anki/ts/editor-toolbar/LabelButton.svelte

22 lines
456 B
Svelte
Raw Normal View History

2021-03-25 23:32:23 +01:00
<script lang="typescript">
import ButtonItem from "./ButtonItem.svelte";
2021-03-29 14:54:10 +02:00
export let label: string;
2021-03-25 23:32:23 +01:00
</script>
2021-03-29 14:54:10 +02:00
2021-03-25 23:32:23 +01:00
<style lang="scss">
button {
padding: 3px 10px;
vertical-align: -0.425em;
2021-03-29 14:54:10 +02:00
margin-right: 3px;
2021-03-25 23:32:23 +01:00
2021-03-29 14:54:10 +02:00
&:focus {
box-shadow: 0 0 0 0.05rem rgba(255, 255, 255, 0.5);
2021-03-29 14:54:10 +02:00
}
2021-03-25 23:32:23 +01:00
}
</style>
<ButtonItem>
<button type="button" class="btn btn-secondary" on:click> {label} </button>
2021-03-25 23:32:23 +01:00
</ButtonItem>