mirror of
https://github.com/ankitects/anki.git
synced 2025-11-22 20:47:14 -05:00
29 lines
702 B
Svelte
29 lines
702 B
Svelte
<!--
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
-->
|
|
<!--
|
|
@component
|
|
Contains the fields. This contains the scrollable area.
|
|
-->
|
|
<div class="fields">
|
|
<slot />
|
|
</div>
|
|
|
|
<style lang="scss">
|
|
.fields {
|
|
padding-top: 5px;
|
|
display: grid;
|
|
grid-auto-rows: min-content;
|
|
grid-gap: 6px;
|
|
|
|
/* Add space after the last field and the start of the tag editor */
|
|
padding-bottom: 5px;
|
|
|
|
/* Move the scrollbar for the NoteEditor into this element */
|
|
overflow-y: auto;
|
|
|
|
/* Push the tag editor to the bottom of the note editor */
|
|
flex-grow: 1;
|
|
}
|
|
</style>
|