Skip to content

Commit

Permalink
CSS import order matters?
Browse files Browse the repository at this point in the history
  • Loading branch information
kennethbruskiewicz committed Aug 23, 2024
1 parent 28e7dde commit b30ce48
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions web/index.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
import * as $ from 'jquery';
import 'bootstrap';

import 'bootstrap/dist/css/bootstrap.min.css';
import '@/web/index.css';
import menu from '@/web/templates/menu.json';

import { initI18n } from '@/lib/utils/i18n';
import { Template } from '@/lib/utils/templates';
import { getGettingStartedMarkup } from '@/lib/toolbarGettingStarted';
import { Footer, Toolbar, AppContext } from '@/lib';
import menu from '@/web/templates/menu.json';

// Order matters: place this at bottom of imports for CSS overrides
import '@/web/index.css';

export function getTemplatePathInScope() {
let templatePath;
Expand Down

0 comments on commit b30ce48

Please sign in to comment.