3abe6168aa
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.
35 lines
677 B
Svelte
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>
|