mirror of
https://github.com/davidkaya/aryx.git
synced 2026-08-08 04:38:45 +02:00
fix: normalize oversized font sizes across the UI
Tighten font sizes to match the app's compact design language: - WelcomePane: heading from text-xl (20px) to text-base (16px), buttons and descriptions from text-sm (14px) to text-[13px] - SettingsPanel: all section headings from text-sm to text-[13px] - NewSessionModal: title from text-sm to text-[13px] - PatternEditor: title from text-sm to text-[13px] - ChatPane: empty-state prompt from text-sm to text-[13px] - Markdown prose: h1 from 1.25rem to 1.125rem, h2 from 1.125rem to 1rem, h3 from 1rem to 0.9375rem Keeps text-sm only for the app brand name, loading state, and error headings where larger text is intentional. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
@@ -140,9 +140,9 @@ textarea {
|
||||
line-height: 1.4;
|
||||
}
|
||||
|
||||
.markdown-content h1 { font-size: 1.25rem; }
|
||||
.markdown-content h2 { font-size: 1.125rem; }
|
||||
.markdown-content h3 { font-size: 1rem; }
|
||||
.markdown-content h1 { font-size: 1.125rem; }
|
||||
.markdown-content h2 { font-size: 1rem; }
|
||||
.markdown-content h3 { font-size: 0.9375rem; }
|
||||
|
||||
.markdown-content p {
|
||||
margin-top: 0.625em;
|
||||
|
||||
Reference in New Issue
Block a user