aboutsummaryrefslogtreecommitdiff
path: root/src/components/Header.astro
blob: 4571a5cc9d10d9963bb8706d60c0d9d33e067ff5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<style lang="scss">
	@import "../scss/_variables.scss";

	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>