From b4bb0a07e7822d59a4880a5f5202f99d5793d1cd Mon Sep 17 00:00:00 2001 From: Isaac Hill <71404865+isaachilly@users.noreply.github.com> Date: Thu, 28 May 2026 17:46:52 +0200 Subject: [PATCH] fix: remove min-device-width from font-size scaling mixin --- packages/keybr-themes/lib/fonts/index.less | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/packages/keybr-themes/lib/fonts/index.less b/packages/keybr-themes/lib/fonts/index.less index 774c5dd7..ea122737 100644 --- a/packages/keybr-themes/lib/fonts/index.less +++ b/packages/keybr-themes/lib/fonts/index.less @@ -165,10 +165,7 @@ html { .font-size(3840px, 24px); // ratio=160 .font-size(@width, @size) { - // Please note that the "device-width" query is deprecated, however the - // "width" query reports browser window size, not screen size. - // stylelint-disable-next-line media-query-no-invalid - @media (min-width: @width), (min-device-width: @width) { + @media (min-width: @width) { html { font-size: @size; }