1
0
Fork 0
mirror of synced 2024-07-09 00:06:05 +12:00

adds General tab design and updates bbui

This commit is contained in:
kevmodrome 2020-06-19 12:09:27 +02:00
parent 237165dcd9
commit be45e180dd
2 changed files with 25 additions and 2 deletions

View file

@ -39,7 +39,7 @@
},
"dependencies": {
"@beyonk/svelte-notifications": "^2.0.3",
"@budibase/bbui": "^1.5.0",
"@budibase/bbui": "^1.7.0",
"@budibase/client": "^0.0.32",
"@nx-js/compiler-util": "^2.0.0",
"codemirror": "^5.51.0",

View file

@ -1 +1,24 @@
General
<script>
import { Input, TextArea, Button } from "@budibase/bbui"
</script>
<div class="container">
<div class="background">
<Input thin edit placeholder="Enter your name" label="Name" />
</div>
<div class="background">
<TextArea thin edit placeholder="Enter your name" label="Name" />
</div>
</div>
<style>
.container {
display: grid;
grid-gap: 16px;
}
.background {
border-radius: 5px;
background-color: var(--light-grey);
padding: 12px 12px 18px 12px;
}
</style>