style(ui): 전체 화면 폰트 크기 증가

- arena: 전투/결과/랭크 화면 폰트 조정
- front: 메인 화면 폰트 조정
- game: 게임플레이 위젯 전반 폰트 조정 (스킬, 장비, 인벤토리 등)
- hall_of_fame: 명예의 전당 폰트 조정
- new_character: 캐릭터 생성 화면 폰트 조정
- settings: 설정 화면 폰트 조정
- 전반적인 가독성 향상
This commit is contained in:
JiWoong Sul
2026-01-15 19:07:34 +09:00
parent e882093d37
commit cbf96c2c0e
43 changed files with 347 additions and 338 deletions

View File

@@ -53,7 +53,7 @@ class SkillsPage extends StatelessWidget {
title,
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 13,
fontSize: 18,
color: Theme.of(context).colorScheme.onPrimaryContainer,
),
),
@@ -65,7 +65,7 @@ class SkillsPage extends StatelessWidget {
return Center(
child: Text(
L10n.of(context).noSpellsYet,
style: const TextStyle(fontSize: 12, color: Colors.grey),
style: const TextStyle(fontSize: 17, color: Colors.grey),
),
);
}
@@ -125,7 +125,7 @@ class _SkillRow extends StatelessWidget {
child: Text(
skillName,
style: TextStyle(
fontSize: 13,
fontSize: 18,
color: isOnCooldown ? Colors.grey : null,
),
overflow: TextOverflow.ellipsis,
@@ -138,7 +138,7 @@ class _SkillRow extends StatelessWidget {
// 랭크
Text(
rank,
style: const TextStyle(fontSize: 12, fontWeight: FontWeight.bold),
style: const TextStyle(fontSize: 17, fontWeight: FontWeight.bold),
),
],
),