Anki/ts/deck-options/TitledContainer.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
458 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 Container from "../components/Container.svelte";
export let title: string;
</script>
<Container --gutter-block="2px" --container-margin="0">
<h1>{title}</h1>
<slot />
</Container>
<style lang="scss">
h1 {
border-bottom: 1px solid var(--border-default);
}
</style>