fix(firefox): scale the browser to 1.25x on the high-DPI panel

Left at auto, Firefox reads the panel's 1.5x and inflates its whole
chrome while point-sized apps stay put. Pin devPixelsPerPx a shade under
that so the UI and pages match without dropping to a too-small 1:1.
This commit is contained in:
2026-07-24 14:47:49 -04:00
parent bb9a92b25b
commit eca87c74a6

View File

@@ -65,6 +65,13 @@ in
}; };
settings = { settings = {
# Scale the UI and page by a fixed factor. Left at auto (-1),
# Firefox reads the panel's 1.5x and inflates its whole chrome on
# this display while point-sized apps stay put; a shade under that
# brings it into line without dropping to true 1:1, which reads too
# small at this DPI.
"layout.css.devPixelsPerPx" = "1.25";
# Auto-enable the sideloaded Firefox Color add-on that carries the # Auto-enable the sideloaded Firefox Color add-on that carries the
# Nord chrome theme, which Firefox otherwise leaves disabled. # Nord chrome theme, which Firefox otherwise leaves disabled.
# The functional extensions come through policy and are unaffected. # The functional extensions come through policy and are unaffected.