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
This commit is contained in:
parent
9142178b11
commit
a571a1ac07
1 changed files with 2 additions and 2 deletions
|
@ -36,7 +36,7 @@ const iconLinks: { label: string; href: string; icon: keyof typeof iconPaths }[]
|
||||||
</template>
|
</template>
|
||||||
</menu-button>
|
</menu-button>
|
||||||
</div>
|
</div>
|
||||||
<noscript class="menu-noscript">
|
<noscript>
|
||||||
<ul class="nav-items">
|
<ul class="nav-items">
|
||||||
{
|
{
|
||||||
textLinks.map(({ label, href }) => (
|
textLinks.map(({ label, href }) => (
|
||||||
|
@ -60,7 +60,7 @@ const iconLinks: { label: string; href: string; icon: keyof typeof iconPaths }[]
|
||||||
}
|
}
|
||||||
</ul>
|
</ul>
|
||||||
</noscript>
|
</noscript>
|
||||||
<noscript style="display: contents;">
|
<noscript>
|
||||||
<div class="menu-footer">
|
<div class="menu-footer">
|
||||||
<div class="socials">
|
<div class="socials">
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue