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

<Sidebar />
<Editor />

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

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

	* {
		background-color: #EEEEEE;
	}
</style>