aboutsummaryrefslogtreecommitdiff
path: root/src/App.svelte
blob: 1242e0d252f4d106be3b897e04ff60e77edf9d82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!-- This is the Root component that loads other components -->
<script lang="ts">
	import Sidebar from "./components/Sidebar.svelte";
</script>

<Sidebar />

<style global>
	@tailwind base;
	@tailwind components;
	@tailwind utilities;

	@layer base {
		html {
			font-family: sans-serif, Proxima Nova;
		}
	}
</style>