fix sass imports
parent
7e692b9ecb
commit
a77877da63
|
|
@ -17,7 +17,12 @@ const publicSCSSDestination = "public/stylesheets";
|
||||||
const publicSCSSFunction = () => {
|
const publicSCSSFunction = () => {
|
||||||
return gulp
|
return gulp
|
||||||
.src("public-scss/*.scss")
|
.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));
|
.pipe(gulp.dest(publicSCSSDestination));
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
@use '../node_modules/@cityssm/bulma-webapp-css/cityssm.min.css';
|
@use "@cityssm/bulma-webapp-css/cityssm.css";
|
||||||
@import '../node_modules/bulma/sass/utilities/derived-variables.sass';
|
@import "bulma/sass/utilities/derived-variables";
|
||||||
|
|
||||||
$white: #fff;
|
$white: #fff;
|
||||||
$black: #000;
|
$black: #000;
|
||||||
|
|
@ -99,7 +99,6 @@ fieldset:enabled .is-hidden-enabled {
|
||||||
|
|
||||||
.highlight,
|
.highlight,
|
||||||
.highlight path {
|
.highlight path {
|
||||||
|
|
||||||
&.is-danger {
|
&.is-danger {
|
||||||
fill: $danger-light;
|
fill: $danger-light;
|
||||||
}
|
}
|
||||||
|
|
@ -122,7 +121,7 @@ fieldset:enabled .is-hidden-enabled {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Modal Size Fix
|
* Modal Size Fix
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue