From a045b32fdcf74d76b6a9afd7bca62e691692f816 Mon Sep 17 00:00:00 2001 From: Dominik Guzei Date: Fri, 14 Feb 2025 10:44:50 +0100 Subject: [PATCH] fix: apply popup styles on smaller screens [LW-12311] --- src/design-tokens/sx.css.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/design-tokens/sx.css.ts b/src/design-tokens/sx.css.ts index f2d94fd..e9281ff 100644 --- a/src/design-tokens/sx.css.ts +++ b/src/design-tokens/sx.css.ts @@ -4,7 +4,7 @@ import { vars } from './theme'; const responsiveProperties = defineProperties({ conditions: { - popupScreen: { '@media': 'screen and (min-width: 360px)' }, + popupScreen: { '@media': 'screen and (min-width: 0px)' }, minimumScreen: { '@media': 'screen and (min-width: 668px)' }, xSmallScreen: { '@media': 'screen and (min-width: 1024px)' }, smallScreen: { '@media': 'screen and (min-width: 1280px)' },