From b62b21a24549e503b6c49f320960ecfcf96cd04f Mon Sep 17 00:00:00 2001 From: basher Date: Wed, 13 Nov 2024 16:06:44 +0000 Subject: [PATCH] fix import order for reset --- ui/npm-shrinkwrap.json | 2 +- ui/package.json | 2 +- ui/src/css/global/index.css | 5 +++-- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/ui/npm-shrinkwrap.json b/ui/npm-shrinkwrap.json index f0983f4..2499070 100644 --- a/ui/npm-shrinkwrap.json +++ b/ui/npm-shrinkwrap.json @@ -30,7 +30,7 @@ "fs-extra": "^10.1.0", "husky": "^8.0.3", "lint-staged": "^13.2.3", - "parcel": "2.12", + "parcel": "^2.12.0", "postcss": "^8.4.18", "prettier": "^3.3.3", "remark-gfm": "^4.0.0", diff --git a/ui/package.json b/ui/package.json index c7bf702..1d6e5cd 100644 --- a/ui/package.json +++ b/ui/package.json @@ -2,7 +2,7 @@ "name": "web-ui-boilerplate", "description": "UI boilerplate for websites/webapps using vanilla HTML/CSS/JavaScript, powered by Storybook, bundled by Parcel.", "author": "basher", - "version": "4.0.0", + "version": "4.0.1", "license": "ISC", "repository": { "type": "git", diff --git a/ui/src/css/global/index.css b/ui/src/css/global/index.css index c999665..b9fd5cb 100644 --- a/ui/src/css/global/index.css +++ b/ui/src/css/global/index.css @@ -1,3 +1,4 @@ -@import 'typography.css'; -@import 'icon.css'; +/* Import 'reset' first. */ @import 'reset.css'; +@import 'icon.css'; +@import 'typography.css';