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

24 lines
437 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;
margin-top:5px;
margin-bottom:10px;
background: var(--lightslate);
2019-07-13 21:35:57 +12:00
color: var(--white);
font-family: 'Courier New', Courier, monospace;
width:95%;
height:100px;
border-radius: 5px;
2019-07-13 21:35:57 +12:00
}
</style>