From 5a5b4aab0b2b9936fd9da0893edf7e3c46a1d82f Mon Sep 17 00:00:00 2001 From: alistair3149 Date: Wed, 1 May 2024 22:12:19 -0400 Subject: [PATCH] =?UTF-8?q?feat(core):=20=E2=9C=A8=20allow=20drawer=20menu?= =?UTF-8?q?=20to=20expand=20in=20smaller=20screen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- resources/skins.citizen.styles/components/Drawer.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/skins.citizen.styles/components/Drawer.less b/resources/skins.citizen.styles/components/Drawer.less index 65654c88..5c016b1c 100644 --- a/resources/skins.citizen.styles/components/Drawer.less +++ b/resources/skins.citizen.styles/components/Drawer.less @@ -33,7 +33,7 @@ &__menu { --size-icon: 1rem; display: grid; - grid-template-columns: repeat( auto-fit, 15rem ); + grid-template-columns: repeat( auto-fit, minmax( 15rem, auto ) ); gap: var( --space-sm ); justify-content: center; max-width: 92vw;