diff options
| author | Natasha Moongrave <natasha@256phi.eu> | 2026-03-30 15:39:57 +0200 |
|---|---|---|
| committer | Natasha Moongrave <natasha@256phi.eu> | 2026-03-30 15:39:57 +0200 |
| commit | 1022090af4268a8e01d984c8365b7bf85e89ee28 (patch) | |
| tree | 12e49753f188d8ec41f2748c3070d81f9ab3081f | |
| parent | 58c013369988eb2f429977dc91f8e136694d0f29 (diff) | |
Made the nav bar follow the color with the rest of the site
| -rw-r--r-- | src/style.css | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/style.css b/src/style.css index 652674b..d0b6fce 100644 --- a/src/style.css +++ b/src/style.css @@ -22,7 +22,8 @@ nav { padding: 1rem 2rem; position: fixed; width: 100%; - background: rgba(8,13,36,0.9); + box-sizing: border-box; + background: rgba(from var(--navy) r g b / 0.9); } .nav-links { |
