mirror of
https://github.com/ankitects/anki.git
synced 2025-09-20 15:02:21 -04:00
21 lines
458 B
Svelte
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>
|