We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a13bbfa commit cdb902aCopy full SHA for cdb902a
packages/dbml-playground/src/components/DbmlEditorPane/DbmlEditorPane.vue
@@ -2,7 +2,7 @@
2
<pane min-size='75' max-size='75' size='75'>
3
<slot>
4
<Editor
5
- class='h-full overflow-auto border rounded border-gray-300 flex flex-col'
+ class='h-full bg-white overflow-auto border rounded border-gray-300 flex flex-col'
6
@source-change='(newSource) => compiler.setSource(newSource)'
7
/>
8
</slot>
packages/dbml-playground/src/components/DbmlEditorPane/Editor/Editor.vue
@@ -1,5 +1,5 @@
1
<template>
- <div ref='editorDomNode' class='w-full h-full'></div>
+ <div ref='editorDomNode' class='w-full h-full p-1'></div>
</template>
<script setup lang="ts">
0 commit comments