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

23 lines
455 B
Svelte
Raw Normal View History

2019-07-13 21:35:57 +12:00
<script>
2020-02-03 22:50:30 +13:00
// todo: use https://ace.c9.io
export let text = ""
export let label = ""
2019-07-13 21:35:57 +12:00
</script>
2020-02-25 04:00:48 +13:00
<div class="header">{label}</div>
2020-02-03 22:50:30 +13:00
<textarea class="uk-textarea" bind:value={text} />
2019-07-13 21:35:57 +12:00
<style>
2020-02-03 22:50:30 +13:00
textarea {
padding: 3px;
margin-top: 5px;
margin-bottom: 10px;
background: var(--lightslate);
2019-07-13 21:35:57 +12:00
color: var(--white);
2020-02-03 22:50:30 +13:00
font-family: "Courier New", Courier, monospace;
width: 95%;
height: 100px;
border-radius: 5px;
2020-02-03 22:50:30 +13:00
}
</style>