Working to make the dark mode look better. Work on the help tech component. General clean up.
This commit is contained in:
@@ -6,7 +6,9 @@
|
||||
|
||||
// *** Import other supporting libraries
|
||||
// import { Spinner } from 'flowbite-svelte';
|
||||
import { BookOpenText } from '@lucide/svelte';
|
||||
import {
|
||||
BookOpenText, BookType
|
||||
} from '@lucide/svelte';
|
||||
|
||||
// *** Import Aether specific variables and functions
|
||||
import { ae_util } from '$lib/ae_utils/ae_utils';
|
||||
@@ -27,7 +29,7 @@ let { lq__journal_obj_li }: Props = $props();
|
||||
|
||||
{#each $lq__journal_obj_li as journals_journal_obj, index}
|
||||
<div
|
||||
class="container journal journal_obj border border rounded p-2 mb-2 space-y-2 w-full max-w-(--breakpoint-lg) flex flex-col items-center justify-center bg-{journals_journal_obj?.cfg_json.color_scheme}-100"
|
||||
class="container journal journal_obj border rounded p-2 mb-2 space-y-2 w-full max-w-(--breakpoint-lg) flex flex-col items-center justify-center bg-{journals_journal_obj?.cfg_json.color_scheme}-100"
|
||||
class:hidden={(journals_journal_obj?.hide || !journals_journal_obj?.enable) && !$ae_loc.trusted_access}
|
||||
class:dim={journals_journal_obj.hide}
|
||||
class:bg-warning-100={!journals_journal_obj?.enable}
|
||||
@@ -36,6 +38,9 @@ let { lq__journal_obj_li }: Props = $props();
|
||||
|
||||
<header class="ae_header flex flex-row gap-2 items-center justify-between w-full">
|
||||
<h3 class="journal__name h3">
|
||||
|
||||
<BookType class="m-1 inline-block text-neutral-800/60" />
|
||||
|
||||
<span class="journal__name">{@html journals_journal_obj.name}</span>
|
||||
</h3>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user