NOT FULLY WORKING YET. Still working to upgrade fully to Tailwind CSS v4.

This commit is contained in:
Scott Idem
2025-06-18 14:48:42 -04:00
parent e6394549bf
commit db6e9dd019
16 changed files with 762 additions and 1160 deletions

View File

@@ -11,9 +11,9 @@ import { goto, invalidateAll } from '$app/navigation';
import '../app.postcss';
// *** Import other supporting libraries
import { AppShell, AppBar, initializeStores } from '@skeletonlabs/skeleton';
// import { AppShell, AppBar, initializeStores } from '@skeletonlabs/skeleton';
// Initialize the stores for Drawer, Modal, and Toast so they work throughout the app.
initializeStores();
// initializeStores();
// import { Modal } from '@skeletonlabs/skeleton';
// import type {
// ModalComponent
@@ -43,7 +43,7 @@ import hljs from 'highlight.js/lib/core';
import 'highlight.js/styles/github-dark.css';
import { browser } from '$app/environment';
import { localStorageStore, storeHighlightJs } from '@skeletonlabs/skeleton';
// import { storeHighlightJs } from '@skeletonlabs/skeleton';
import xml from 'highlight.js/lib/languages/xml'; // for HTML
import css from 'highlight.js/lib/languages/css';
import javascript from 'highlight.js/lib/languages/javascript';
@@ -53,7 +53,7 @@ hljs.registerLanguage('xml', xml); // for HTML
hljs.registerLanguage('css', css);
hljs.registerLanguage('javascript', javascript);
hljs.registerLanguage('typescript', typescript);
storeHighlightJs.set(hljs);
// storeHighlightJs.set(hljs);
// *** Import Aether specific variables and functions
import Analytics from '$lib/analytics.svelte'