anki/ts/deckconfig/DeckConfigPage.svelte
Damien Elmes 3abe6168aa tweak deckconfig top area formatting
I suspect there's a better way to ensure selector and save button are
shown on the same line on both large and small widths; PRs are welcome.
2021-04-18 17:33:12 +10:00

35 lines
677 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 ConfigSelector from "./ConfigSelector.svelte";
import ConfigEditor from "./ConfigEditor.svelte";
import type { DeckConfigState } from "./lib";
export let state: DeckConfigState;
</script>
<style>
.outer {
display: flex;
justify-content: center;
}
.inner {
padding: 0.5em;
}
</style>
<div id="modal">
<!-- filled in later-->
</div>
<ConfigSelector {state} />
<div class="outer">
<div class="inner">
<ConfigEditor {state} />
</div>
</div>