diff options
| -rw-r--r-- | src/App.svelte | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/src/App.svelte b/src/App.svelte index 260e037..2b497ee 100644 --- a/src/App.svelte +++ b/src/App.svelte @@ -1,11 +1,24 @@ +<!-- This is the Root component that loads other components --> <script lang="ts"> - import Editor from "./components/Editor.svelte"; + import Editor from "./components/Editor.svelte"; + import Sidebar from "./Sidebar.svelte"; </script> +<Sidebar /> +<Editor /> + <style global> @tailwind base; @tailwind components; @tailwind utilities; -</style> -<Editor /> + @layer base { + html { + font-family: sans-serif, Proxima Nova; + } + } + + * { + background-color: #EEEEEE; + } +</style> |
