Implement theme toggle functionality in IdentityGraph component and refine styling for light/dark modes. Clean up unused imports and whitespace in related files.
All checks were successful
OSV-Scanner Scheduled Scan / scan-scheduled (push) Successful in 15s
CI / check (push) Successful in 19s
CI / build (push) Successful in 33s

This commit is contained in:
2025-12-24 19:13:08 -06:00
parent 9d59cd6b4c
commit b683da85f0
5 changed files with 366 additions and 179 deletions

View File

@@ -2,7 +2,6 @@
@tailwind components;
@tailwind utilities;
@layer base {
:root {
color-scheme: dark;

View File

File diff suppressed because it is too large Load Diff

View File

@@ -1,13 +1,4 @@
import {
User,
Mail,
Phone,
MapPin,
Globe,
Building2,
Network,
AtSign,
} from 'lucide-svelte';
import { User, Mail, Phone, MapPin, Globe, Building2, Network, AtSign } from 'lucide-svelte';
import type { ComponentType } from 'svelte';
export type NodeType =

View File

@@ -16,4 +16,3 @@
}
]
}

View File

@@ -4,7 +4,7 @@ const urlsToCache = [
'/',
'/favicon.svg',
'/fonts/nunito-v16-latin-regular.woff2',
'/manifest.json'
'/manifest.json',
];
self.addEventListener('install', (event) => {
@@ -56,4 +56,3 @@ self.addEventListener('fetch', (event) => {
})
);
});