Anki/ts/editor/FieldState.svelte
Matthias Metelka 3043789960 Redesign fields
2022-08-03 18:06:15 +02:00

18 lines
396 B
Svelte

<!--
Copyright: Ankitects Pty Ltd and contributors
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
-->
<span class="field-state justify-content-end">
<slot />
</span>
<style lang="scss">
.field-state {
display: flex;
justify-content: flex;
flex-grow: 1;
& > :global(*) {
margin-left: 2px;
}
}
</style>