23ef52a297
Section content is being obscured under the headings, causing settings not to be seen, and text to appear in unusual places like under the importing bar at the bottom. Until a better solution can be found, this should allow things to be shown properly. https://forums.ankiweb.net/t/anki-2-1-55-beta-3/24295/27
18 lines
292 B
Svelte
18 lines
292 B
Svelte
<!--
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
-->
|
|
<script lang="ts">
|
|
export let heading: string;
|
|
</script>
|
|
|
|
<h1>
|
|
{heading}
|
|
</h1>
|
|
|
|
<style lang="scss">
|
|
h1 {
|
|
padding-top: 0.5em;
|
|
}
|
|
</style>
|