diff options
| author | Fuwn <[email protected]> | 2023-12-21 21:41:09 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-12-21 21:41:09 -0800 |
| commit | b5cc2b9af0c015f57886c0e1df2785014379387b (patch) | |
| tree | a1fb1485ba0f9290435e5c120048d7a97771160c /src/routes/+layout.svelte | |
| parent | feat(schedule): day filter (diff) | |
| download | due.moe-b5cc2b9af0c015f57886c0e1df2785014379387b.tar.xz due.moe-b5cc2b9af0c015f57886c0e1df2785014379387b.zip | |
feat(layout): no underline links by default
Diffstat (limited to 'src/routes/+layout.svelte')
| -rw-r--r-- | src/routes/+layout.svelte | 8 |
1 files changed, 8 insertions, 0 deletions
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; + } </style> |