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

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
17 lines
292 B
Svelte
17 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>
|