컴포넌트 디자인 변경 반영

This commit is contained in:
현성필
2025-11-17 13:24:09 +09:00
parent ac59d4109c
commit f35470814d
25 changed files with 337 additions and 500 deletions
@@ -31,7 +31,7 @@
// Button variants
&-primary {
background: $gradient-primary;
background: $primary-blue;
color: $white;
box-shadow: $shadow-md;
@@ -46,9 +46,8 @@
}
&-secondary {
background: $white;
color: $primary-blue;
border: 2px solid $primary-blue;
background: $secondary-blue;
color: #6e7780;
&:hover {
background: $light-bg;
@@ -475,4 +474,4 @@
i {
font-size: 14px;
}
}
}
@@ -332,30 +332,30 @@
}
}
button {
padding: $spacing-sm $spacing-lg;
background: $gradient-primary;
color: $white;
border: none;
border-radius: $border-radius-md;
font-size: $font-size-sm;
font-weight: $font-weight-medium;
cursor: pointer;
transition: $transition-base;
white-space: nowrap;
&:hover {
transform: translateY(-2px);
box-shadow: $shadow-md;
}
&:active {
transform: translateY(0);
}
i {
margin-right: $spacing-xs;
}
}
//button {
// padding: $spacing-sm $spacing-lg;
// background: $gradient-primary;
// color: $white;
// border: none;
// border-radius: $border-radius-md;
// font-size: $font-size-sm;
// font-weight: $font-weight-medium;
// cursor: pointer;
// transition: $transition-base;
// white-space: nowrap;
//
// &:hover {
// transform: translateY(-2px);
// box-shadow: $shadow-md;
// }
//
// &:active {
// transform: translateY(0);
// }
//
// i {
// margin-right: $spacing-xs;
// }
//}
}
}