앱 관리 디자인 수정

This commit is contained in:
현성필
2025-11-17 14:17:34 +09:00
parent a074bd578a
commit ab2fca5419
18 changed files with 108 additions and 173 deletions
+41 -43
View File
@@ -4188,9 +4188,6 @@ select.form-control {
.faq-accordion .faq-item.active .faq-question {
color: #0049b4;
}
.faq-accordion .faq-item.active .faq-question::before {
background: linear-gradient(135deg, #0049b4 0%, #c3dfea 100%);
}
.faq-accordion .faq-item.active .faq-question .faq-icon {
transform: rotate(180deg);
color: #0049b4;
@@ -4288,7 +4285,7 @@ select.form-control {
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #0049b4 0%, #c3dfea 100%);
background: #0049b4;
color: #FFFFFF;
border-radius: 50%;
font-size: 14px;
@@ -8633,50 +8630,34 @@ select.form-control {
@media (max-width: 768px) {
.form-actions {
flex-direction: column;
width: 100%;
padding: 0 16px 16px;
gap: 8px;
}
}
@media (max-width: 768px) {
.form-actions .btn,
.form-actions .btn-primary,
.form-actions .btn-secondary {
.form-actions .btn-secondary,
.form-actions .btn-cancel {
width: 100%;
min-height: 48px;
padding: 14px 24px;
font-size: 16px;
justify-content: center;
}
}
.form-actions .btn-primary,
.form-actions .btn-secondary {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 12px 24px;
border-radius: 8px;
font-size: 16px;
font-weight: 500;
transition: all 0.3s ease;
text-decoration: none;
border: none;
cursor: pointer;
}
.form-actions .btn-primary .icon,
.form-actions .btn-secondary .icon {
font-size: 18px;
}
.form-actions .btn-primary {
background: linear-gradient(135deg, #0049b4 0%, #c3dfea 100%);
color: #FFFFFF;
box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1);
}
.form-actions .btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(75, 155, 255, 0.15);
}
.form-actions .btn-secondary {
background: #FFFFFF;
color: #1A1A2E;
border: 1px solid #E2E8F0;
}
.form-actions .btn-secondary:hover {
background: #F8FAFC;
border-color: #0049b4;
color: #0049b4;
.form-actions .btn .icon,
.form-actions .btn-primary .icon,
.form-actions .btn-secondary .icon,
.form-actions .btn-cancel .icon {
font-size: 18px;
}
.form-actions .btn svg,
.form-actions .btn-primary svg,
.form-actions .btn-secondary svg,
.form-actions .btn-cancel svg {
width: 18px;
height: 18px;
}
}
.register-result {
@@ -8890,6 +8871,14 @@ select.form-control {
gap: 16px;
flex-wrap: wrap;
}
@media (max-width: 768px) {
.result-actions {
flex-direction: column;
align-items: stretch;
gap: 8px;
padding: 0 16px;
}
}
.result-actions .btn-primary,
.result-actions .btn-secondary {
display: inline-flex;
@@ -8908,6 +8897,15 @@ select.form-control {
.result-actions .btn-secondary .icon {
font-size: 18px;
}
@media (max-width: 768px) {
.result-actions .btn-primary,
.result-actions .btn-secondary {
width: 100%;
min-height: 48px;
padding: 14px 24px;
justify-content: center;
}
}
.result-actions .btn-primary {
background: linear-gradient(135deg, #0049b4 0%, #c3dfea 100%);
color: #FFFFFF;
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -23,9 +23,9 @@
.faq-question {
color: $primary-blue;
&::before {
background: $gradient-primary;
}
//&::before {
// background: $gradient-primary;
//}
.faq-icon {
transform: rotate(180deg);
@@ -128,7 +128,7 @@
display: flex;
align-items: center;
justify-content: center;
background: $gradient-primary;
background: $primary-blue;
color: $white;
border-radius: $border-radius-circle;
font-size: $font-size-sm;
@@ -1004,54 +1004,30 @@
@media (max-width: $breakpoint-sm) {
flex-direction: column;
width: 100%;
.btn-primary,
.btn-secondary {
width: 100%;
justify-content: center;
}
}
.btn-primary,
.btn-secondary {
display: inline-flex;
align-items: center;
padding: 0 $spacing-md $spacing-md;
gap: $spacing-sm;
padding: 12px 24px;
border-radius: $border-radius-md;
font-size: $font-size-base;
font-weight: $font-weight-medium;
transition: $transition-base;
text-decoration: none;
border: none;
cursor: pointer;
.icon {
font-size: 18px;
}
}
.btn-primary {
background: $gradient-primary;
color: $white;
box-shadow: $shadow-md;
// Button styles for mobile
.btn,
.btn-primary,
.btn-secondary,
.btn-cancel {
@media (max-width: $breakpoint-sm) {
width: 100%;
min-height: 48px;
padding: 14px $spacing-lg;
font-size: $font-size-base;
justify-content: center;
&:hover {
transform: translateY(-2px);
box-shadow: $shadow-lg;
}
}
.icon {
font-size: 18px;
}
.btn-secondary {
background: $white;
color: $text-dark;
border: 1px solid $border-gray;
&:hover {
background: $gray-bg;
border-color: $primary-blue;
color: $primary-blue;
svg {
width: 18px;
height: 18px;
}
}
}
}
@@ -1303,6 +1279,13 @@
gap: $spacing-md;
flex-wrap: wrap;
@media (max-width: $breakpoint-sm) {
flex-direction: column;
align-items: stretch;
gap: $spacing-sm;
padding: 0 $spacing-md;
}
.btn-primary,
.btn-secondary {
display: inline-flex;
@@ -1320,6 +1303,13 @@
.icon {
font-size: 18px;
}
@media (max-width: $breakpoint-sm) {
width: 100%;
min-height: 48px;
padding: 14px $spacing-lg;
justify-content: center;
}
}
.btn-primary {
@@ -285,59 +285,6 @@
flex-wrap: wrap;
gap: $spacing-xs;
align-items: center;
.btn-action {
display: inline-flex;
align-items: center;
gap: 4px;
padding: 6px 12px;
font-size: $font-size-xs;
font-weight: $font-weight-medium;
border: none;
border-radius: $border-radius-md;
cursor: pointer;
transition: $transition-base;
white-space: nowrap;
&.btn-sm {
padding: 4px 10px;
font-size: 11px;
}
&.btn-primary {
background-color: $primary-blue;
color: $white;
&:hover {
background-color: darken($primary-blue, 10%);
box-shadow: $shadow-sm;
}
}
&.btn-danger {
background-color: $accent-orange;
color: $white;
&:hover {
background-color: darken($accent-orange, 10%);
box-shadow: $shadow-sm;
}
}
&.btn-warning {
background-color: $accent-yellow;
color: $gray-800;
&:hover {
background-color: darken($accent-yellow, 10%);
box-shadow: $shadow-sm;
}
}
&:active {
transform: scale(0.98);
}
}
}
// Empty State