anki/ts/editor-toolbar/LabelButton.svelte
2021-04-15 13:09:49 +02:00

22 lines
438 B
Svelte

<script lang="typescript">
export let label: string;
</script>
<style lang="scss">
button {
display: inline-block;
vertical-align: middle;
width: auto;
height: 26px;
padding: 0 10px;
margin: 0 3px;
&:focus {
box-shadow: 0 0 12px 4px rgb(255 255 255 / 0.5);
}
}
</style>
<button class="btn btn-secondary" tabindex="-1" on:click> {label} </button>