Commit 8fc98abb authored by Brendan Wong's avatar Brendan Wong Committed by GitHub

fix: margins for nav on mobile (#6908)

* fix margins for nav

* fix spacing on mobile

* Revert "fix spacing on mobile"

This reverts commit c87791669a826dd37f93ad219ad8e780e333b5b1.

* update css for minis
parent def4ab3b
...@@ -60,8 +60,9 @@ const baseMenuItem = style([ ...@@ -60,8 +60,9 @@ const baseMenuItem = style([
subhead, subhead,
sprinkles({ sprinkles({
paddingY: '8', paddingY: '8',
paddingX: '14', paddingX: { sm: '6', md: '14' },
marginY: '4', marginY: '4',
marginX: { sm: '4', md: '0' },
borderRadius: '12', borderRadius: '12',
transition: '250', transition: '250',
height: 'min', height: 'min',
...@@ -69,7 +70,6 @@ const baseMenuItem = style([ ...@@ -69,7 +70,6 @@ const baseMenuItem = style([
textAlign: 'center', textAlign: 'center',
display: 'flex', display: 'flex',
alignItems: 'center', alignItems: 'center',
gap: '4',
}), }),
{ {
lineHeight: '24px', lineHeight: '24px',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment