1
0
Fork 0
mirror of synced 2024-09-18 02:08:34 +12:00
budibase/packages/builder/src/common/CodeArea.svelte
2020-02-03 09:50:30 +00:00

22 lines
440 B
Svelte

<script>
// todo: use https://ace.c9.io
export let text = ""
export let label = ""
</script>
<div>{label}</div>
<textarea class="uk-textarea" bind:value={text} />
<style>
textarea {
padding: 3px;
margin-top: 5px;
margin-bottom: 10px;
background: var(--lightslate);
color: var(--white);
font-family: "Courier New", Courier, monospace;
width: 95%;
height: 100px;
border-radius: 5px;
}
</style>