fix sass imports
parent
7e692b9ecb
commit
a77877da63
|
|
@ -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));
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -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
Loading…
Reference in New Issue