blob: b0ec65c6d3aceed3f1f70c17285e39262ace9196 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!-- 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;
}
}
</style>
|