This commit is contained in:
2020-06-24 11:00:41 +02:00
parent 0ab51bea2a
commit 42176ca4fd
16 changed files with 484 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<script>
export let value
export let full = false
</script>
<style>
input {
outline: none;
border: 3px solid hsl(0, 0%, 0%);
border-radius: 1em;
font-size: inherit;
padding: 0.25em 1em;
}
.full {
width: 100%;
}
</style>
<input bind:value class:full {...$$restProps} />