diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2021-11-05 09:27:35 -0500 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2021-11-05 09:27:35 -0500 |
| commit | 85380b4b60bf74507a01957b29bd6e3808e216db (patch) | |
| tree | a43784660fdc29e5b95df3e358cf722eec2b092b /src/components/Editor.svelte | |
| parent | ffef3a6be19d1139b6378c8119d444082dd0cbac (diff) | |
| parent | 29fc563863f561cdc707485289c5580b4397a580 (diff) | |
Merge pull request #10 from cobraguy/rewrite
Update to Svelte app
Diffstat (limited to 'src/components/Editor.svelte')
| -rw-r--r-- | src/components/Editor.svelte | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/components/Editor.svelte b/src/components/Editor.svelte new file mode 100644 index 0000000..c8a30c6 --- /dev/null +++ b/src/components/Editor.svelte @@ -0,0 +1,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> |
