mirror of
https://github.com/ankitects/anki.git
synced 2025-11-10 14:47:12 -05:00
18 lines
396 B
Svelte
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>
|