diff options
Diffstat (limited to 'examples/portfolio/src/components/Nav.astro')
-rw-r--r-- | examples/portfolio/src/components/Nav.astro | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/examples/portfolio/src/components/Nav.astro b/examples/portfolio/src/components/Nav.astro index bf9ac7869..d0a5857b1 100644 --- a/examples/portfolio/src/components/Nav.astro +++ b/examples/portfolio/src/components/Nav.astro @@ -25,7 +25,7 @@ const iconLinks: { label: string; href: string; icon: keyof typeof iconPaths }[] <div class="menu-header"> <a href="/" class="site-title"> <Icon icon="terminal-window" color="var(--accent-regular)" size="1.6em" gradient /> - Jeanine White + Jeanine White </a> <menu-button> <template> @@ -321,7 +321,9 @@ const iconLinks: { label: string; href: string; icon: keyof typeof iconPaths }[] .link { padding: 0.5rem 1rem; border-radius: 999rem; - transition: color var(--theme-transition), background-color var(--theme-transition); + transition: + color var(--theme-transition), + background-color var(--theme-transition); } .link:hover, |