chore: cleanup and fixes

This commit is contained in:
Nicola Zambello 2023-07-16 19:30:00 +02:00
parent ecef9a3509
commit 89376abc57
Signed by: nzambello
GPG key ID: 56E4A92C2C1E50BA
3 changed files with 3 additions and 16 deletions

View file

@ -90,6 +90,7 @@ import Logo from './Logo.astro';
order: 2;
flex-grow: 0;
flex-shrink: initial;
box-shadow: none;
}
.mobile-icon-button:focus,
@ -130,7 +131,7 @@ import Logo from './Logo.astro';
left: 0;
width: 100vw;
height: 100vh;
backdrop-filter: blur(10px);
backdrop-filter: blur(2px);
z-index: 1;
background: rgba(0, 0, 0, 0.2);
}

View file

@ -18,8 +18,7 @@ const isActive = href === pathname || href === pathname.replace(/\/$/, '');
li a {
display: inline-block;
text-decoration: none;
--color: var(--secondary-inverse);
color: var(--color);
color: var(--primary);
}
li a.active {

View file

@ -1,13 +0,0 @@
---
import BaseLayout from '../layouts/BaseLayout.astro'
import { SITE_TITLE, SITE_DESCRIPTION } from '../consts'
---
<BaseLayout title={SITE_TITLE} description={SITE_DESCRIPTION}>
<h1>Not found!</h1>
<style>
h1 {
text-align: center;
}
</style>
</BaseLayout>