|
1 | 1 | <script lang="ts"> |
2 | 2 | // The ordering of these imports is critical to your app working properly |
3 | | - // import '@skeletonlabs/skeleton/themes/theme-skeleton.css'; |
4 | | - import '$lib/css/themes/theme-bexis2.css'; |
5 | | - // If you have source.organizeImports set to true in VSCode, then it will auto change this ordering |
6 | | - import '@skeletonlabs/skeleton/styles/all.css'; |
7 | | - // Most of your app wide CSS should be put in this file |
8 | | - import '../app.postcss'; |
9 | 3 | // For the floating UI elements such as column filters |
10 | 4 | import { computePosition, autoUpdate, offset, shift, flip, arrow } from '@floating-ui/dom'; |
11 | 5 | import { storePopup } from '@skeletonlabs/skeleton'; |
|
16 | 10 | import { storeHighlightJs } from '@skeletonlabs/skeleton'; |
17 | 11 | import { AppShell, TableOfContents } from '@skeletonlabs/skeleton'; |
18 | 12 | import Navigation from '$docs/Navigation.svelte'; |
19 | | -
|
| 13 | + // import '@skeletonlabs/skeleton/themes/theme-skeleton.css'; |
| 14 | + import '$lib/css/themes/theme-bexis2.css'; |
| 15 | + // If you have source.organizeImports set to true in VSCode, then it will auto change this ordering |
| 16 | + import '@skeletonlabs/skeleton/styles/all.css'; |
| 17 | + // Most of your app wide CSS should be put in this file |
| 18 | + import '../app.postcss'; |
| 19 | + |
20 | 20 | // Config for the floating UI elements |
21 | 21 | storePopup.set({ computePosition, autoUpdate, offset, shift, flip, arrow }); |
22 | 22 | // Config for the syntax highlighting |
|
0 commit comments