로그인 페이지 스타일 적용

This commit is contained in:
현성필
2025-11-14 11:10:12 +09:00
parent 0362db6d9a
commit 55a4db9de8
11 changed files with 413 additions and 356 deletions
@@ -37,6 +37,31 @@
transform: translateY(-2px);
box-shadow: $shadow-md;
}
// Box style for Figma design (75x37px with black border)
&-box {
width: 75px;
height: 37px;
padding: 0;
display: inline-flex;
align-items: center;
justify-content: center;
color: $text-dark;
text-decoration: none;
border: 1px solid #000000;
border-radius: 5.5px;
font-weight: $font-weight-regular;
font-size: $font-size-sm;
background: transparent;
transition: $transition-base;
&:hover {
background: $gray-bg;
color: $text-dark;
transform: translateY(-1px);
box-shadow: $shadow-sm;
}
}
}
// ===========================