Updated the css themes to remove specific stuff from chartDisplay

added $components alias to svelte.config.js
This commit is contained in:
2025-12-08 23:36:32 -06:00
parent a1349f9cd1
commit 06c157d4af
13 changed files with 100 additions and 121 deletions

View File

@@ -7,7 +7,7 @@
<div class="button-row">
{#each themes as theme}
<button on:click={() => (currentTheme = theme)} class:active={currentTheme === theme}>
{theme.charAt(0).toUpperCase() + theme.slice(1)}
{theme.charAt(0).toUpperCase()}
</button>
{/each}
</div>
@@ -21,4 +21,3 @@
margin-top: 10px;
}
</style>