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

21 lines
328 B
Svelte

<style lang="scss">
ul {
padding-left: 0;
margin-bottom: 2px;
& > :global(*) {
margin: 0 4px;
&:first-child {
margin-left: 0;
}
&:last-child {
margin-right: 0;
}
}
}
</style>
<ul><slot/></ul>