aboutsummaryrefslogtreecommitdiff
path: root/src/App.svelte
blob: b775e86aa8ab12a65656092137b1a2b293ccdf77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!-- 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;
		}
	}

	/* Custom Styles */
	@layer utilities {
	}
</style>