Anki/ts/editor/Fields.svelte
Matthias Metelka f30026149a Add 5px top padding to Fields.svelte
to make it look like it used to.
2022-09-12 16:09:12 +02:00

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>