aboutsummaryrefslogtreecommitdiff
path: root/src/App.svelte
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2022-06-03 07:08:53 -0500
committerFurkan Sahin <furkan-dev@proton.me>2022-06-03 07:08:53 -0500
commit7a556a2981d4c0f78a9c8fe9836c00df9e396604 (patch)
treee013209f96c8c6598538281aa09b05e8d950483f /src/App.svelte
parent474851c82cc9c9c93f80d9a41569e95272da2997 (diff)
Add Sidebar component and @tailwind
Diffstat (limited to 'src/App.svelte')
-rw-r--r--src/App.svelte19
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>