From b5cc2b9af0c015f57886c0e1df2785014379387b Mon Sep 17 00:00:00 2001 From: Fuwn Date: Thu, 21 Dec 2023 21:41:09 -0800 Subject: feat(layout): no underline links by default --- src/routes/+layout.svelte | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/routes') diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index 856c6569..8ec6cb28 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -115,4 +115,12 @@ #hover-header:hover { opacity: 1; } + + :global(a) { + text-decoration: none; + } + + :global(a:hover) { + text-decoration: underline; + } -- cgit v1.2.3