1
0
Fork 0
mirror of synced 2024-07-16 11:45:47 +12:00
budibase/packages/builder/src/components/common/CodeArea.svelte

22 lines
450 B
Svelte
Raw Normal View History

2019-07-13 21:35:57 +12:00
<script>
import { JavaScriptIcon } from "../common/Icons"
2020-02-03 22:50:30 +13:00
// todo: use https://ace.c9.io
export let text = ""
2019-07-13 21:35:57 +12:00
</script>
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 {
2020-03-13 03:23:29 +13:00
padding: 10px;
2020-02-03 22:50:30 +13:00
margin-top: 5px;
margin-bottom: 10px;
2020-03-25 05:17:10 +13:00
background: var(--secondary80);
2020-03-13 03:23:29 +13: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>