fix: label text black, remove rotation

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
EENE Dashboard
2026-06-01 14:32:10 +09:00
parent fd181c29de
commit c578fbc324

View File

@@ -92,15 +92,15 @@ export default function DashboardPage() {
{/* 실행과제 영역 (flex-1) */}
<div className="flex-1 flex items-center justify-center bg-blue-50/60 border-b border-gray-200">
<span
className="text-xs font-black text-blue-400 tracking-widest select-none"
style={{ writingMode: 'vertical-rl', transform: 'rotate(180deg)' }}
className="text-xs font-black text-gray-800 tracking-widest select-none"
style={{ writingMode: 'vertical-rl' }}
></span>
</div>
{/* 기반업무 영역 (고정 300px) */}
<div className="shrink-0 flex items-center justify-center bg-amber-50/60" style={{ height: 300 }}>
<span
className="text-xs font-black text-amber-500 tracking-widest select-none"
style={{ writingMode: 'vertical-rl', transform: 'rotate(180deg)' }}
className="text-xs font-black text-gray-800 tracking-widest select-none"
style={{ writingMode: 'vertical-rl' }}
></span>
</div>
</div>