feat(frontend): improved UI

This commit is contained in:
ribardej
2025-10-23 09:22:10 +02:00
parent 82eb34c6e6
commit 5ecfc62b02
5 changed files with 60 additions and 21 deletions

View File

@@ -14,8 +14,8 @@ export function applyFontSize(size: FontSize) {
const root = document.documentElement;
const map: Record<FontSize, string> = {
small: '14px',
medium: '16px',
large: '18px',
medium: '18px',
large: '22px',
};
root.style.fontSize = map[size];
}