Reduce base font size

Partially closes #1049
This commit is contained in:
schroda
2026-01-18 18:52:13 +01:00
parent 41b0fe77d6
commit 2b986c3564
2 changed files with 5 additions and 0 deletions

View File

@@ -11,6 +11,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
### Changed ### Changed
- (**General**) Preserve refresh token (UI Login) over sessions - (**General**) Preserve refresh token (UI Login) over sessions
- (**General**) Reduce base font size
- (**Theme**) Improve automatic theme background colors - (**Theme**) Improve automatic theme background colors
- (**Theme**) Adjust "primary color" of dynamic color theme on manga pages - (**Theme**) Adjust "primary color" of dynamic color theme on manga pages
- (**Theme**) Increase max length of custom theme names to 32 (previously 16) - (**Theme**) Increase max length of custom theme names to 32 (previously 16)

View File

@@ -199,6 +199,10 @@ export const createTheme = (
deepmerge(appColorTheme, { deepmerge(appColorTheme, {
defaultColorScheme: mode, defaultColorScheme: mode,
direction, direction,
typography: {
fontSize: 13,
...appTheme.muiTheme.typography,
},
components: { components: {
...appTheme.muiTheme.components, ...appTheme.muiTheme.components,
MuiUseMediaQuery: { MuiUseMediaQuery: {