ee9af871b7
* Include base styles in graphs-base.scss This includes the custom scrollbar styles, which were missing on the stats page. * Set responsive grid layout on GraphsPage, use TitledContainer component + use global button style, tweak input appearance and other small changes * Improve margins on GraphsPage
28 lines
908 B
Svelte
28 lines
908 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 TitledContainer from "../components/TitledContainer.svelte";
|
|
import type { DeckOptionsState } from "./lib";
|
|
|
|
export let state: DeckOptionsState;
|
|
|
|
const components = state.addonComponents;
|
|
const auxData = state.currentAuxData;
|
|
</script>
|
|
|
|
{#if $components.length || state.haveAddons}
|
|
<TitledContainer title="Add-ons">
|
|
<p>
|
|
If you're using an add-on that hasn't been updated to use this new screen
|
|
yet, you can access the old deck options screen by holding down the shift
|
|
key when opening the options.
|
|
</p>
|
|
|
|
{#each $components as addon}
|
|
<svelte:component this={addon.component} bind:data={$auxData} {...addon} />
|
|
{/each}
|
|
</TitledContainer>
|
|
{/if}
|