Anki/ts/import-csv/Header.svelte
Matthias Metelka f2d5abb95d Improve categorization of global colors
by renaming almost all of them and sorting them into separate maps.
2022-08-29 15:43:02 +02:00

21 lines
483 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">
import StickyContainer from "../components/StickyContainer.svelte";
export let heading: string;
</script>
<StickyContainer --sticky-border="var(--border-default)" --sticky-borders="0px 0 1px">
<h1>
{heading}
</h1>
</StickyContainer>
<style lang="scss">
h1 {
padding-top: 0.5em;
}
</style>