1
0
Fork 0
mirror of synced 2024-08-23 05:51:29 +12:00
budibase/packages/builder/src/common/CodeArea.svelte

21 lines
368 B
Svelte
Raw Normal View History

2019-07-13 21:35:57 +12:00
<script>
// todo: use https://ace.c9.io
export let text = "";
export let label = "";
</script>
<div>{label}</div>
<textarea class="uk-textarea" bind:value={text}></textarea>
2019-07-13 21:35:57 +12:00
<style>
textarea {
padding:3px;
background: var(--darkslate);
color: var(--white);
font-family: 'Courier New', Courier, monospace;
width:95%;
height:100px;
}
</style>