mirror of
https://github.com/ankitects/anki.git
synced 2025-09-23 16:26:40 -04:00

- try out bootstrap modals - they're not perfect, but let's see how they go for now. Won't be hard to switch to bridge commands if required. - handle adding/renaming/removing - add a class to manage the state
30 lines
750 B
Svelte
30 lines
750 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 NewOptions from "./NewOptions.svelte";
|
|
import ReviewOptions from "./ReviewOptions.svelte";
|
|
import LapseOptions from "./LapseOptions.svelte";
|
|
import GeneralOptions from "./GeneralOptions.svelte";
|
|
import type { DeckConfigState } from "./lib";
|
|
|
|
export let state: DeckConfigState;
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
:global(h2) {
|
|
margin-top: 1em;
|
|
}
|
|
|
|
:global(.warn) {
|
|
background-color: var(--flag1-bg);
|
|
}
|
|
</style>
|
|
|
|
<div>
|
|
<NewOptions {state} />
|
|
<ReviewOptions {state} />
|
|
<LapseOptions {state} />
|
|
<GeneralOptions {state} />
|
|
</div>
|