We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f8d7cd commit 2f857dbCopy full SHA for 2f857db
1 file changed
src/components/Header.astro
@@ -22,7 +22,7 @@ const navItems = [
22
<div class="title-wrapper sl-flex">
23
<SiteTitle {...Astro.props} />
24
</div>
25
- <nav class="mobile-site-nav md:sl-hidden" aria-label="Main">
+ <nav class="mobile-site-nav sl-flex md:sl-hidden" aria-label="Main">
26
{navItems.map(({ label, href, active }) => (
27
<a href={href} class:list={['nav-link', 'mobile-nav-link', { active }]}>{label}</a>
28
))}
@@ -66,7 +66,6 @@ const navItems = [
66
}
67
68
.mobile-site-nav {
69
- display: flex;
70
flex: 1;
71
min-width: 0;
72
gap: 0.35rem;
0 commit comments