We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 384baf9 commit e814a4dCopy full SHA for e814a4d
apps/site/components/Containers/NavBar/index.module.css
@@ -56,8 +56,7 @@
56
}
57
58
.main {
59
- @apply hidden
60
- flex-1
+ @apply flex-1
61
flex-col
62
justify-between
63
gap-4
apps/site/components/Containers/NavBar/index.tsx
@@ -73,7 +73,7 @@ const NavBar: FC<NavbarProps> = ({
73
aria-label={t(`components.containers.navBar.controls.toggle`)}
74
/>
75
76
- <div className={`${style.main} peer-checked:flex`}>
+ <div className={`${style.main} hidden peer-checked:flex`}>
77
<div className={style.navItems}>
78
{navItems.map(({ text, link, target }) => (
79
<NavItem key={link} href={link} target={target}>
0 commit comments