Skip to content

Commit 6215580

Browse files
committed
Fix build erroring due to load order of CSS files
1 parent dc7ad02 commit 6215580

2 files changed

Lines changed: 3 additions & 6 deletions

File tree

html/src/app.pcss

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
@tailwind base;
2-
@tailwind components;
3-
@tailwind utilities;
1+
@import "theme.pcss";
2+
@import '@skeletonlabs/skeleton/styles/all.css';
3+
44

55
/*place global styles here */
66
html, body { @apply h-full overflow-hidden; }
@@ -30,7 +30,6 @@ html:root {
3030
font-size: 2rem;
3131
}
3232

33-
3433
.description-prefix {
3534
@apply text-center text-xs font-mono opacity-60 items-center;
3635
}

html/src/components/Layout.svelte

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
<script>
2-
import '../theme.pcss';
3-
import '@skeletonlabs/skeleton/styles/all.css';
42
import '../app.pcss';
53
import { AppShell, AppBar, LightSwitch, tooltip, Modal, modalStore } from '@skeletonlabs/skeleton';
64
import Icon from '@iconify/svelte';

0 commit comments

Comments
 (0)