fix: [sales] 가격시뮬레이터 결과패널 헤더 배경색 변경 (가독성 개선)

- 그라데이션 배경 → 흰색 배경 + 컬러 하단 보더로 변경
- 부제목 텍스트 색상을 gray-500으로 변경하여 가독성 확보
This commit is contained in:
김보곤
2026-03-13 20:15:42 +09:00
parent 553b74f898
commit df8a23e4ec

View File

@@ -715,9 +715,9 @@ class="w-full h-2 bg-gray-200 rounded-lg appearance-none cursor-pointer accent-e
<div style="flex: 0 0 420px; position: sticky; top: 80px;">
{{-- 고객 비용 요약 --}}
<div class="bg-white rounded-xl shadow-sm mb-4 overflow-hidden">
<div class="px-5 py-4 bg-gradient-to-r from-emerald-600 to-teal-600">
<h3 class="font-semibold text-white">고객 비용 요약</h3>
<p class="text-xs text-white/80">선택한 상품 기준 예상 비용</p>
<div class="px-5 py-4 border-b-2 border-emerald-500">
<h3 class="font-semibold text-emerald-700">고객 비용 요약</h3>
<p class="text-xs text-gray-500">선택한 상품 기준 예상 비용</p>
</div>
<div class="p-5 space-y-4">
{{-- 선택 상품 --}}
@@ -770,9 +770,9 @@ class="w-full h-2 bg-gray-200 rounded-lg appearance-none cursor-pointer accent-e
{{-- 수당 시뮬레이션 --}}
<div class="bg-white rounded-xl shadow-sm mb-4 overflow-hidden">
<div class="px-5 py-4 bg-gradient-to-r from-indigo-600 to-purple-600">
<h3 class="font-semibold text-white">수당 시뮬레이션</h3>
<p class="text-xs text-white/80">
<div class="px-5 py-4 border-b-2 border-indigo-500">
<h3 class="font-semibold text-indigo-700">수당 시뮬레이션</h3>
<p class="text-xs text-gray-500">
<span x-text="signupType === 'individual' ? '개인 가입' : '단체 가입'"></span> 기준
</p>
</div>