sql editor - not working

This commit is contained in:
Jan Prochazka
2021-03-07 09:50:20 +01:00
parent 2eebe44f87
commit da6bd9b475
11 changed files with 258 additions and 18 deletions

View File

@@ -0,0 +1,20 @@
<script>
import AceEditorCore from './AceEditorCore.svelte';
let clientWidth;
let clientHeight;
</script>
<div bind:clientWidth bind:clientHeight>
<AceEditorCore {...$$props} width={clientWidth} height={clientHeight} />
</div>
<style>
div {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
}
</style>