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

20 lines
300 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>