fix sass imports

deepsource-autofix-76c6eb20
Dan Gowans 2022-09-21 10:21:29 -04:00
parent 7e692b9ecb
commit a77877da63
3 changed files with 63 additions and 59 deletions

View File

@ -17,7 +17,12 @@ const publicSCSSDestination = "public/stylesheets";
const publicSCSSFunction = () => {
return gulp
.src("public-scss/*.scss")
.pipe(sass({ outputStyle: "compressed" }).on("error", sass.logError))
.pipe(
sass({ outputStyle: "compressed", includePaths: ["node_modules"] }).on(
"error",
sass.logError
)
)
.pipe(gulp.dest(publicSCSSDestination));
};

View File

@ -1,5 +1,5 @@
@use '../node_modules/@cityssm/bulma-webapp-css/cityssm.min.css';
@import '../node_modules/bulma/sass/utilities/derived-variables.sass';
@use "@cityssm/bulma-webapp-css/cityssm.css";
@import "bulma/sass/utilities/derived-variables";
$white: #fff;
$black: #000;
@ -99,7 +99,6 @@ fieldset:enabled .is-hidden-enabled {
.highlight,
.highlight path {
&.is-danger {
fill: $danger-light;
}
@ -122,7 +121,7 @@ fieldset:enabled .is-hidden-enabled {
display: none;
}
/*
/*
* Modal Size Fix
*/

File diff suppressed because one or more lines are too long