chore: cleanup and fixes
This commit is contained in:
parent
ecef9a3509
commit
89376abc57
|
|
@ -90,6 +90,7 @@ import Logo from './Logo.astro';
|
||||||
order: 2;
|
order: 2;
|
||||||
flex-grow: 0;
|
flex-grow: 0;
|
||||||
flex-shrink: initial;
|
flex-shrink: initial;
|
||||||
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mobile-icon-button:focus,
|
.mobile-icon-button:focus,
|
||||||
|
|
@ -130,7 +131,7 @@ import Logo from './Logo.astro';
|
||||||
left: 0;
|
left: 0;
|
||||||
width: 100vw;
|
width: 100vw;
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
backdrop-filter: blur(10px);
|
backdrop-filter: blur(2px);
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
background: rgba(0, 0, 0, 0.2);
|
background: rgba(0, 0, 0, 0.2);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -18,8 +18,7 @@ const isActive = href === pathname || href === pathname.replace(/\/$/, '');
|
||||||
li a {
|
li a {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
--color: var(--secondary-inverse);
|
color: var(--primary);
|
||||||
color: var(--color);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
li a.active {
|
li a.active {
|
||||||
|
|
|
||||||
|
|
@ -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>
|
|
||||||
Loading…
Reference in a new issue