anki/ts/editor-toolbar/LabelButton.svelte

22 lines
441 B
Svelte
Raw Normal View History

2021-03-25 23:32:23 +01:00
<script lang="typescript">
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 {
display: inline-block;
vertical-align: middle;
width: auto;
height: 26px;
padding: 0 10px;
margin: 0 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>
2021-03-30 00:51:44 +02:00
<button type="button" class="btn btn-secondary" on:click> {label} </button>