mirror of https://github.com/Budibase/budibase.git
2 changed files with 25 additions and 2 deletions
@ -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> |
|||
|
|||
Loading…
Reference in new issue