1
0
Fork 0
mirror of synced 2024-10-04 20:13:35 +13:00
budibase/packages/builder/src/components/common/Input.svelte

31 lines
581 B
Svelte
Raw Normal View History

2020-01-31 05:22:19 +13:00
<script>
2020-02-03 22:50:30 +13:00
export let value = ""
2020-05-08 01:30:04 +12:00
export let width = ""
let style = { width }
2020-01-31 05:22:19 +13:00
</script>
2020-05-08 01:30:04 +12:00
<input type="text" style={`width: ${width};`} on:change bind:value />
2020-02-03 22:50:30 +13:00
2020-01-31 05:22:19 +13:00
<style>
input {
display: block;
font-size: 14px;
font-weight: 500;
color: var(--ink);
2020-01-31 05:22:19 +13:00
line-height: 1.3;
padding: 12px;
width: 164px;
float: right;
2020-01-31 05:22:19 +13:00
max-width: 100%;
box-sizing: border-box;
margin: 0;
-moz-appearance: none;
-webkit-appearance: none;
appearance: none;
background: #fff;
border: 1px solid var(--grey-dark);
height: 32px;
2020-01-31 05:22:19 +13:00
}
</style>