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

38 lines
677 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 = ""
export let label = ""
export let javascript = false
2019-07-13 21:35:57 +12:00
</script>
<div class="header">
{#if javascript}
<JavaScriptIcon />
{/if}
<span>{label}</span>
</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);
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
}
span {
margin-left: 5px;
}
.header {
display: flex;
align-items: center;
}
2020-02-03 22:50:30 +13:00
</style>