mirror of
https://github.com/ankitects/anki.git
synced 2025-12-16 08:10:59 -05:00
27 lines
625 B
Svelte
27 lines
625 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">
|
|
<slot />
|
|
</div>
|
|
|
|
<style lang="scss">
|
|
.fields {
|
|
display: grid;
|
|
grid-auto-rows: min-content;
|
|
grid-gap: 6px;
|
|
|
|
padding: 5px 3px 0;
|
|
/* set height to 100% for rich text widgets */
|
|
height: 100%;
|
|
|
|
/* moves the scrollbar inside the editor */
|
|
overflow-x: hidden;
|
|
|
|
> :global(:last-child) {
|
|
/* bottom padding is eaten by overflow-x */
|
|
margin-bottom: 5px;
|
|
}
|
|
}
|
|
</style>
|