2020-01-30 17:22:19 +01:00
|
|
|
<script>
|
2020-02-03 10:50:30 +01:00
|
|
|
export let value = ""
|
2020-01-30 17:22:19 +01:00
|
|
|
</script>
|
|
|
|
|
2020-02-03 10:50:30 +01:00
|
|
|
<input type="text" on:change bind:value />
|
|
|
|
|
2020-01-30 17:22:19 +01:00
|
|
|
<style>
|
|
|
|
input {
|
|
|
|
display: block;
|
|
|
|
font-size: 14px;
|
|
|
|
font-family: sans-serif;
|
|
|
|
font-weight: 500;
|
|
|
|
color: #163057;
|
|
|
|
line-height: 1.3;
|
|
|
|
padding: 1em 2.6em 0.9em 1.4em;
|
|
|
|
width: 100%;
|
|
|
|
max-width: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
margin: 0;
|
|
|
|
-moz-appearance: none;
|
|
|
|
-webkit-appearance: none;
|
|
|
|
appearance: none;
|
|
|
|
background: #fff;
|
|
|
|
border: 1px solid #ccc;
|
2020-02-21 19:02:02 +01:00
|
|
|
height: 35px;
|
2020-01-30 17:22:19 +01:00
|
|
|
}
|
|
|
|
</style>
|