Files
popov.link/src/components/Header.astro

23 lines
296 B
Plaintext
Raw Normal View History

<style lang="scss">
@use "../scss/variables" as *;
header {
padding-bottom: 1rem;
text-align: right;
}
a {
text-decoration: none;
margin-right: 1.5rem;
&:last-child {
margin-right: 0;
}
}
</style>
<header>
<a href="/">Home</a>
<a href="/blog/">Blog</a>
</header>