Use Sass to compile one stylesheet per page type
parent
6dae322a2a
commit
a4b008f7ae
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1,8 +1,14 @@
|
||||||
|
// Import autocomplete
|
||||||
|
@import "autocomplete.scss";
|
||||||
|
|
||||||
// Import Custom Variables
|
// Import Custom Variables
|
||||||
@import "variables.scss";
|
@import "variables.scss";
|
||||||
|
|
||||||
|
// Import FA
|
||||||
|
@import "../fontawesome.scss";
|
||||||
|
|
||||||
// Import Bootstrap
|
// Import Bootstrap
|
||||||
@import "../vendor/bootstrap/scss/bootstrap.scss";
|
@import "../node_modules/bootstrap/scss/bootstrap.scss";
|
||||||
|
|
||||||
// Import Custom SCSS
|
// Import Custom SCSS
|
||||||
@import "mixins.scss";
|
@import "mixins.scss";
|
||||||
|
@ -12,3 +18,4 @@
|
||||||
@import "cards.scss";
|
@import "cards.scss";
|
||||||
@import "login.scss";
|
@import "login.scss";
|
||||||
@import "footer.scss";
|
@import "footer.scss";
|
||||||
|
@import "admin-users.scss";
|
|
@ -0,0 +1,7 @@
|
||||||
|
$fa-font-path: "../fonts/fontawesome-free";
|
||||||
|
|
||||||
|
// Font-face declaration
|
||||||
|
@import "../node_modules/@fortawesome/fontawesome-free/scss/regular.scss";
|
||||||
|
@import "../node_modules/@fortawesome/fontawesome-free/scss/solid.scss";
|
||||||
|
// CSS classes
|
||||||
|
@import "../node_modules/@fortawesome/fontawesome-free/scss/fontawesome.scss";
|
|
@ -0,0 +1,7 @@
|
||||||
|
@use "../node_modules/bootstrap/scss/bootstrap.scss";
|
||||||
|
@use "../fontawesome.scss";
|
||||||
|
@use "vendor/animate/animate.css";
|
||||||
|
@use "vendor/css-hamburgers/hamburgers.min.css";
|
||||||
|
|
||||||
|
@use "util.css";
|
||||||
|
@use "main.css";
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue