Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions src/views/goal/DepositRegisterView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1360,7 +1360,7 @@ function onAccountChange(index, event) {
.slider-purple::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
background: linear-gradient(135deg, #8b5cf6, #a855f7);
background: #8b5cf6;
border: 3px solid #ffffff;
border-radius: 50%;
box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
Expand All @@ -1372,7 +1372,7 @@ function onAccountChange(index, event) {
}

.slider-purple::-webkit-slider-thumb:hover {
background: linear-gradient(135deg, #7c3aed, #8b5cf6);
background: #7c3aed;
box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
transform: scale(1.1);
}
Expand All @@ -1389,7 +1389,7 @@ function onAccountChange(index, event) {
}

.slider-purple::-moz-range-thumb {
background: linear-gradient(135deg, #8b5cf6, #a855f7);
background: #8b5cf6;
border: 3px solid #ffffff;
border-radius: 50%;
box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
Expand All @@ -1400,7 +1400,7 @@ function onAccountChange(index, event) {
}

.slider-purple::-moz-range-thumb:hover {
background: linear-gradient(135deg, #7c3aed, #8b5cf6);
background: #7c3aed;
box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
transform: scale(1.1);
}
Expand Down Expand Up @@ -1542,17 +1542,17 @@ function onAccountChange(index, event) {
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Enhanced gradient backgrounds */
.bg-gradient-purple {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
/* Background colors */
.bg-purple {
background: #8b5cf6;
}

.bg-gradient-success {
background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
.bg-success {
background: #10b981;
}

.bg-gradient-warning {
background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
.bg-warning {
background: #f59e0b;
}

/* Accessibility improvements */
Expand Down
12 changes: 6 additions & 6 deletions src/views/goal/GoalEditView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
</div>
<div class="h-1.5 bg-gray-100 rounded-full overflow-hidden">
<div
class="h-full bg-gradient-to-r from-indigo-500 to-indigo-600 rounded-full transition-all duration-500 ease-out"
class="h-full bg-indigo-500 rounded-full transition-all duration-500 ease-out"
:style="{ width: `${progressPercentage}%` }"
></div>
</div>
Expand Down Expand Up @@ -205,12 +205,12 @@
<div class="h-3 bg-gray-200 rounded-full overflow-hidden">
<!-- 예적금 영역 (파란색) -->
<div
class="h-full bg-gradient-to-r from-blue-500 to-blue-400 transition-all duration-200 absolute left-0"
class="h-full bg-blue-500 transition-all duration-200 absolute left-0"
:style="{ width: `${depositRatio}%` }"
></div>
<!-- ISA 영역 (보라색) -->
<div
class="h-full bg-gradient-to-r from-purple-500 to-purple-400 transition-all duration-200 absolute right-0"
class="h-full bg-purple-500 transition-all duration-200 absolute right-0"
:style="{ width: `${isaRate}%` }"
></div>
</div>
Expand All @@ -234,13 +234,13 @@
:class="isDragging ? 'border-purple-600 scale-110' : 'border-purple-500'"
:style="{ left: `calc(${depositRatio}% - 12px)` }"
>
<div class="absolute inset-1 bg-gradient-to-br from-purple-400 to-purple-600 rounded-full"></div>
<div class="absolute inset-1 bg-purple-500 rounded-full"></div>
</div>
</div>

<!-- 금액 표시 카드 -->
<div class="grid grid-cols-2 gap-3">
<div class="bg-gradient-to-br from-blue-50 to-blue-100 rounded-xl p-4 border border-blue-200">
<div class="bg-blue-50 rounded-xl p-4 border border-blue-200">
<div class="flex items-center justify-between mb-2">
<span class="text-xs font-medium text-blue-600">예적금</span>
<svg class="w-4 h-4 text-blue-500" fill="currentColor" viewBox="0 0 20 20">
Expand All @@ -250,7 +250,7 @@
</div>
<p class="text-lg font-bold text-blue-900">{{ formattedDepositAmount }}</p>
</div>
<div class="bg-gradient-to-br from-purple-50 to-purple-100 rounded-xl p-4 border border-purple-200">
<div class="bg-purple-50 rounded-xl p-4 border border-purple-200">
<div class="flex items-center justify-between mb-2">
<span class="text-xs font-medium text-purple-600">ISA</span>
<svg class="w-4 h-4 text-purple-500" fill="currentColor" viewBox="0 0 20 20">
Expand Down