feat(desktop): shrink Stylix font sizes for the laptop panel

The graphical layer inherited Stylix's default font sizes, which read
oversized on this display. Step them down a point across applications,
desktop, popups, and the terminal.
This commit is contained in:
2026-07-24 14:47:49 -04:00
parent 68e0aafbbb
commit bb9a92b25b

View File

@@ -40,9 +40,20 @@ in
size = 24; size = 24;
}; };
fonts.monospace = { fonts = {
package = pkgs.jetbrains-mono; monospace = {
name = "JetBrains Mono"; package = pkgs.jetbrains-mono;
name = "JetBrains Mono";
};
# A step below Stylix's defaults (applications 12, desktop/popups 10,
# terminal 12), which read oversized on this display.
sizes = {
applications = 10;
desktop = 9;
popups = 9;
terminal = 10;
};
}; };
}; };