style: nav

This commit is contained in:
Ayo 2023-03-22 12:27:37 +01:00
parent b30d4044f0
commit d904870bb7

View file

@ -34,7 +34,10 @@ const { links } = Astro.props;
<style>
nav {
width: 100%;
background-color: var(--color-brand-blue-2);
background: var(--ayo-gradient);
}
nav a {
text-decoration: none;
}
nav a:hover svg {
color: var(--color-brand-complement);
@ -45,7 +48,8 @@ const { links } = Astro.props;
padding: 1rem;
}
#wrapper {
width: fit-content;
max-width: var(--content-width);
margin: 0 auto;
text-align: right;
}
</style>