메인 화면 퍼블 수정

This commit is contained in:
현성필
2025-12-11 15:26:56 +09:00
parent 249d9ca33a
commit 17577f6b5f
5 changed files with 34 additions and 29 deletions
@@ -213,7 +213,6 @@
.mobile-left {
display: flex;
align-items: center;
// 375px 기준 8px → 8/375*100 ≈ 2.13vw, 범위: 8px ~ 12px
gap: clamp(8px, 2.13vw, 12px);
.mobile-logo-link {
@@ -230,8 +229,6 @@
}
.mobile-logo-text {
// Figma: API Portal 텍스트 - 375px 기준 14px
// 14/375*100 ≈ 3.73vw, 범위: 14px ~ 18px
font-family: $font-family-primary;
font-size: clamp(14px, 3.73vw, 18px);
font-weight: 700;
@@ -367,7 +364,7 @@
.drawer-header-left {
display: flex;
align-items: center;
gap: 8px;
gap: clamp(8px, 2.13vw, 12px);
.drawer-logo-link {
display: flex;
@@ -375,15 +372,18 @@
}
.drawer-logo {
height: 16px;
height: clamp(16px, 4.27vw, 24px);
width: auto;
object-fit: contain;
}
.drawer-logo-text {
font-family: $font-family-primary;
font-size: 14px;
font-weight: 500;
font-size: clamp(14px, 3.73vw, 18px);
font-weight: 700;
color: #212529;
text-decoration: none;
white-space: nowrap;
}
}
@@ -902,7 +902,7 @@
text-decoration: none;
color: var(--text-dark);
font-weight: 500;
font-size: 15px;
font-size: 18px;
padding: 8px 16px;
border-radius: 8px;
transition: all 0.3s ease;