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

18 lines
294 B
Svelte

<style lang="scss">
div {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
position: sticky;
top: 0;
left: 0;
z-index: 5;
padding: 2px;
background: var(--bg-color);
}
</style>
<div><slot /></div>