28 lines
518 B
Svelte
28 lines
518 B
Svelte
|
<script>
|
||
|
export let value = "";
|
||
|
</script>
|
||
|
|
||
|
<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;
|
||
|
height: 50px;
|
||
|
}
|
||
|
</style>
|
||
|
|
||
|
<input type="text" on:change bind:value />
|