diff options
-rw-r--r-- | examples/portfolio/src/components/Nav.astro | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/portfolio/src/components/Nav.astro b/examples/portfolio/src/components/Nav.astro index 2e9717884..bf9ac7869 100644 --- a/examples/portfolio/src/components/Nav.astro +++ b/examples/portfolio/src/components/Nav.astro @@ -36,7 +36,7 @@ const iconLinks: { label: string; href: string; icon: keyof typeof iconPaths }[] </template> </menu-button> </div> - <noscript class="menu-noscript"> + <noscript> <ul class="nav-items"> { textLinks.map(({ label, href }) => ( @@ -60,7 +60,7 @@ const iconLinks: { label: string; href: string; icon: keyof typeof iconPaths }[] } </ul> </noscript> - <noscript style="display: contents;"> + <noscript> <div class="menu-footer"> <div class="socials"> { |