diff options
author | 2023-08-22 19:41:12 -0600 | |
---|---|---|
committer | 2023-08-23 07:11:12 +0530 | |
commit | a571a1ac07fad4a898158b04594e03ad0c1de83b (patch) | |
tree | 01cd256d2e0d180ccf7ee944784b030de41a2a2e /examples | |
parent | 9142178b113443749b87c1d259859b42a3d7a9c4 (diff) | |
download | astro-a571a1ac07fad4a898158b04594e03ad0c1de83b.tar.gz astro-a571a1ac07fad4a898158b04594e03ad0c1de83b.tar.zst astro-a571a1ac07fad4a898158b04594e03ad0c1de83b.zip |
Fix(examples): changed inline-style to regular selector (#8185)
* fix: changed inline-style to a regular selector
* fix: fixed typo
* fix: removed styles from noscript tags
Diffstat (limited to 'examples')
-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"> { |