mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2025-07-23 06:49:37 +02:00
Fix card colors in light modes
This commit is contained in:
parent
5ca5e1f69c
commit
6b778dea79
3 changed files with 5 additions and 4 deletions
|
@ -221,7 +221,7 @@
|
||||||
<div class="badge badge-accent">Dining</div>
|
<div class="badge badge-accent">Dining</div>
|
||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
<div class="badge badge-neutral">{adventure.is_public ? 'Public' : 'Private'}</div>
|
<div class="badge badge-secondary">{adventure.is_public ? 'Public' : 'Private'}</div>
|
||||||
</div>
|
</div>
|
||||||
{#if adventure.location && adventure.location !== ''}
|
{#if adventure.location && adventure.location !== ''}
|
||||||
<div class="inline-flex items-center">
|
<div class="inline-flex items-center">
|
||||||
|
|
|
@ -90,7 +90,7 @@
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div class="inline-flex gap-2 mb-2">
|
<div class="inline-flex gap-2 mb-2">
|
||||||
<div class="badge badge-neutral">{collection.is_public ? 'Public' : 'Private'}</div>
|
<div class="badge badge-secondary">{collection.is_public ? 'Public' : 'Private'}</div>
|
||||||
{#if collection.is_archived}
|
{#if collection.is_archived}
|
||||||
<div class="badge badge-warning">Archived</div>
|
<div class="badge badge-warning">Archived</div>
|
||||||
{/if}
|
{/if}
|
||||||
|
|
|
@ -12,6 +12,7 @@
|
||||||
import Water from '~icons/mdi/water';
|
import Water from '~icons/mdi/water';
|
||||||
import AboutModal from './AboutModal.svelte';
|
import AboutModal from './AboutModal.svelte';
|
||||||
import Avatar from './Avatar.svelte';
|
import Avatar from './Avatar.svelte';
|
||||||
|
import PaletteOutline from '~icons/mdi/palette-outline';
|
||||||
import { page } from '$app/stores';
|
import { page } from '$app/stores';
|
||||||
|
|
||||||
let query: string = '';
|
let query: string = '';
|
||||||
|
@ -203,10 +204,10 @@
|
||||||
<li>
|
<li>
|
||||||
<button formaction="/?/setTheme&theme=forest">Forest<Forest class="w-6 h-6" /></button>
|
<button formaction="/?/setTheme&theme=forest">Forest<Forest class="w-6 h-6" /></button>
|
||||||
<button formaction="/?/setTheme&theme=aestheticLight"
|
<button formaction="/?/setTheme&theme=aestheticLight"
|
||||||
>Aesthetic Light<Flower class="w-6 h-6" /></button
|
>Aesthetic Light<PaletteOutline class="w-6 h-6" /></button
|
||||||
>
|
>
|
||||||
<button formaction="/?/setTheme&theme=aestheticDark"
|
<button formaction="/?/setTheme&theme=aestheticDark"
|
||||||
>Aesthetic Dark<Flower class="w-6 h-6" /></button
|
>Aesthetic Dark<PaletteOutline class="w-6 h-6" /></button
|
||||||
>
|
>
|
||||||
<button formaction="/?/setTheme&theme=aqua">Aqua<Water class="w-6 h-6" /></button>
|
<button formaction="/?/setTheme&theme=aqua">Aqua<Water class="w-6 h-6" /></button>
|
||||||
</li>
|
</li>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue