aboutsummaryrefslogtreecommitdiff
path: root/src/components/Editor.svelte
blob: c8a30c6a123bf400dc1e66d8d312f0251833265f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<script lang="ts">
  import EditorActions from "./EditorActions.svelte";
  import EditorLists from "./EditorLists.svelte";
</script>

<div id="editor">
  <EditorActions />
  <EditorLists />
</div>

<style>
  #editor {
    display: flex;
    flex-direction: column;
  }

  :global(#action-bar) {
    flex-shrink: 0;
  }
</style>