mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 22:12:21 -04:00

* Fix white on white text in light mode * Reflect rename to FieldsEditor in class name * Fix adjusting fields ending in an endless loop
17 lines
370 B
Svelte
17 lines
370 B
Svelte
<!--
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
-->
|
|
<div class="fields-editor">
|
|
<slot />
|
|
</div>
|
|
|
|
<style lang="scss">
|
|
.fields-editor {
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-grow: 1;
|
|
overflow-x: hidden;
|
|
}
|
|
</style>
|