diff --git a/src/components/Header.astro b/src/components/Header.astro index 85cc76c..afaaa5d 100644 --- a/src/components/Header.astro +++ b/src/components/Header.astro @@ -3,14 +3,16 @@ import HeaderLink from './HeaderLink.astro'; import { SITE_TITLE } from '../consts'; --- -
- - {SITE_TITLE} - +
+
+ + {SITE_TITLE} + +
\ No newline at end of file diff --git a/src/components/HeaderLink.astro b/src/components/HeaderLink.astro index 3dd439b..b780397 100644 --- a/src/components/HeaderLink.astro +++ b/src/components/HeaderLink.astro @@ -19,6 +19,6 @@ const isActive = href === pathname || href === pathname.replace(/\/$/, ''); } a.active { font-weight: bolder; - text-decoration: underline; + border-bottom: 2px solid; }