fix main menu sizing

This commit is contained in:
Ryan Di
2025-10-03 17:15:34 +10:00
parent bb8e48621b
commit 73cb1e5207

View File

@@ -188,10 +188,13 @@
border: none;
box-shadow: 0 0 0 1px var(--color-surface-lowest);
background-color: var(--color-surface-low);
width: var(--mobile-action-button-size, 2rem);
height: var(--mobile-action-button-size, 2rem);
&:active {
box-shadow: 0 0 0 1px var(--color-brand-active);
}
@include isMobile() {
width: var(--mobile-action-button-size, 2rem);
height: var(--mobile-action-button-size, 2rem);
}
}