refactor: btn-game CSS 정리 및 LoginPage.css 삭제
- .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:
@@ -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); }
|
||||
|
||||
@@ -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>
|
||||
)}
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
/* This file is deprecated. Both LoginPage and RegisterPage now use AuthPage.css */
|
||||
Reference in New Issue
Block a user