fix(components): CSS 변수명 수정 + dead code 제거

- --border-line → --line (5개 컴포넌트 8곳)
- --gradient-accent → --grad-accent (FAB)
- --text-default → --text (MobileSheet)
- useSwipe.js 삭제 (미사용 dead code)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-23 15:15:55 +09:00
parent ca9929faac
commit 6ef687378d
6 changed files with 10 additions and 23 deletions

View File

@@ -26,7 +26,7 @@
right: 0;
max-height: 90vh;
background: var(--bg-secondary);
border-top: 1px solid var(--border-line);
border-top: 1px solid var(--line);
border-radius: var(--radius-xl) var(--radius-xl) 0 0;
z-index: 401;
display: flex;
@@ -73,7 +73,7 @@
align-items: center;
justify-content: space-between;
padding: 0 20px 12px;
border-bottom: 1px solid var(--border-line);
border-bottom: 1px solid var(--line);
flex-shrink: 0;
}
@@ -100,7 +100,7 @@
}
.mobile-sheet__close:hover {
color: var(--text-default);
color: var(--text);
}
/* Scrollable body */