anki/ts/deck-options/TitledContainer.svelte
Henrik Giesel 24af5bada3 More uniform file naming
kebap-case for .ts, .scss, .html, and directories
2021-07-01 12:24:16 +02:00

29 lines
588 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 Section from "components/Section.svelte";
export let title: string;
export let api: Record<string, never> | undefined = undefined;
</script>
<div class="container-fluid mb-5">
<h1>{title}</h1>
<Section {api}>
<slot />
</Section>
</div>
<style lang="scss">
h1 {
border-bottom: 1px solid var(--medium-border);
}
.container-fluid {
break-inside: avoid;
}
</style>