09, 12번 화면 배경 그라디언트 색상 통일

- 파란 톤 배경(#F8F9FF) → 붉은 톤 배경(#FFF5F5)으로 변경
- 09-이벤트기획안승인.html: approval-container 배경
- 12-QR포스터생성선택.html: poster-container 배경

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
doyeon 2025-10-21 10:18:30 +09:00
parent 16ead16162
commit acab195ae7
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@
/* Layout */
.approval-container {
min-height: 100vh;
background: linear-gradient(135deg, #F8F9FF 0%, #FFFFFF 100%);
background: linear-gradient(135deg, #FFF5F5 0%, #FFFFFF 100%);
padding-bottom: var(--spacing-2xl);
}

View File

@ -10,7 +10,7 @@
/* Layout */
.poster-container {
min-height: 100vh;
background: linear-gradient(135deg, #F8F9FF 0%, #FFFFFF 100%);
background: linear-gradient(135deg, #FFF5F5 0%, #FFFFFF 100%);
padding-bottom: var(--spacing-2xl);
}