refactor: btn-game CSS 정리 및 LoginPage.css 삭제
Some checks failed
Client CI/CD / test (push) Successful in 9s
Client CI/CD / deploy (push) Failing after 2m17s

- .btn-game에 display:inline-block, text-decoration:none 추가 → HomePage inline style 제거
- LoginPage.css 삭제 (deprecated, 임포트 없음)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-12 20:01:30 +09:00
parent 0b999f0526
commit 7cd8f0a837
3 changed files with 4 additions and 3 deletions

View File

@@ -36,6 +36,7 @@ a:hover {
.btn-game {
position: relative;
display: inline-block;
border: none;
color: #fff;
padding: 14px 40px;
@@ -45,6 +46,7 @@ a:hover {
background: url('/images/btn_normal.webp') center/100% 100% no-repeat;
letter-spacing: 0.05em;
overflow: hidden;
text-decoration: none;
transition: transform 0.15s, filter 0.15s;
}
.btn-game:hover { transform: translateY(-1px); filter: brightness(1.2); }

View File

@@ -46,11 +46,11 @@ export default function HomePage() {
<p className="hero-desc">MULTIPLAYER BOSS RAID</p>
<div className="hero-cta">
{user ? (
<a href="#download" className="btn-game" style={{display: 'inline-block', textDecoration: 'none'}}>
<a href="#download" className="btn-game">
<span>게임 시작</span>
</a>
) : (
<Link to="/login" className="btn-game" style={{display: 'inline-block', textDecoration: 'none'}}>
<Link to="/login" className="btn-game">
<span>로그인</span>
</Link>
)}

View File

@@ -1 +0,0 @@
/* This file is deprecated. Both LoginPage and RegisterPage now use AuthPage.css */