From 6ae22a2d34f0916a9dfd2d02f584d481f78d6739 Mon Sep 17 00:00:00 2001 From: Ricardo Mendes Date: Thu, 14 Aug 2025 15:11:29 +0100 Subject: [PATCH 1/2] move to from index.html links to app.css imports --- app/index.html | 7 ------- app/styles/app.css | 15 +++++++++------ 2 files changed, 9 insertions(+), 13 deletions(-) diff --git a/app/index.html b/app/index.html index ec6fab4..b699426 100644 --- a/app/index.html +++ b/app/index.html @@ -24,13 +24,6 @@ rel="stylesheet" href="{{rootURL}}assets/netrunnerdb.css" /> - - - {{content-for "head-footer"}} diff --git a/app/styles/app.css b/app/styles/app.css index fddf7ed..f2a9e0f 100644 --- a/app/styles/app.css +++ b/app/styles/app.css @@ -1,10 +1,13 @@ -@import url("./themes/dark.css"); -@import url("./themes/light.css"); - /* Themes must be imported first */ -@import url("./faction.css"); -@import url("./font-size.css"); -@import url("./bootstrap-ext.css"); +@import url("themes/dark.css"); +@import url("themes/light.css"); + +/* Site */ +@import url("panel.css"); +@import url("color.css"); +@import url("faction.css"); +@import url("font-size.css"); +@import url("bootstrap-ext.css"); /* BASE */ From 84c0d67fab34a3d3428300c99baa13b715db374c Mon Sep 17 00:00:00 2001 From: Ricardo Mendes Date: Thu, 14 Aug 2025 15:14:26 +0100 Subject: [PATCH 2/2] ignore vendored bootstrap.css --- .stylelintignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.stylelintignore b/.stylelintignore index a0cf71c..b79927d 100644 --- a/.stylelintignore +++ b/.stylelintignore @@ -6,3 +6,6 @@ # addons /.node_modules.ember-try/ + +# vendor +public/vendor/*