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>