feat(core): allow drawer menu to expand in smaller screen

This commit is contained in:
alistair3149 2024-05-01 22:12:19 -04:00
parent 29e7d849af
commit 5a5b4aab0b
No known key found for this signature in database

View file

@ -33,7 +33,7 @@
&__menu { &__menu {
--size-icon: 1rem; --size-icon: 1rem;
display: grid; display: grid;
grid-template-columns: repeat( auto-fit, 15rem ); grid-template-columns: repeat( auto-fit, minmax( 15rem, auto ) );
gap: var( --space-sm ); gap: var( --space-sm );
justify-content: center; justify-content: center;
max-width: 92vw; max-width: 92vw;