frontend/.pnpm-store/v3/files/16/20a61c8792f2335c034a6a73cf195cdf6689ed3fc7140046f9c926b4c66a65542e2bcdd507e0944a60e56c4262528131f301f337cf89b2adff064030419ee0

27 lines
610 B
Plaintext

<script>export let handler;
let value = '';
</script>
<input
bind:value={value}
placeholder="{handler.i18n.search}"
spellcheck="false"
on:input={() => handler.search(value)}
/>
<style>
input{
border:1px solid #e0e0e0;
border-radius:4px;
outline:none;
padding:0 8px;
line-height:24px;
margin:0;
height:24px;
background:transparent;
width:176px;
transition:all, 0.1s;
}
input:focus {border:1px solid #bdbdbd;}
input::placeholder {color:#9e9e9e;line-height:24px;}
</style>