Rename uxStyles to uxVariables.
This commit is contained in:
parent
3ceb550045
commit
b9f9d35ebd
3 changed files with 7 additions and 7 deletions
|
|
@ -115,11 +115,11 @@ $font-family-code: $font-family-monospace;
|
||||||
$font-size-base: 1rem; // Assumes the browser default, typically `16px`
|
$font-size-base: 1rem; // Assumes the browser default, typically `16px`
|
||||||
|
|
||||||
//Font weight
|
//Font weight
|
||||||
$font-weight-lighter: lighter !default;
|
$font-weight-lighter: lighter;
|
||||||
$font-weight-light: 300 !default;
|
$font-weight-light: 300;
|
||||||
$font-weight-normal: 400 !default;
|
$font-weight-normal: 400;
|
||||||
$font-weight-bold: 500 !default;
|
$font-weight-bold: 500;
|
||||||
$font-weight-bolder: bolder !default;
|
$font-weight-bolder: bolder;
|
||||||
|
|
||||||
//Headings
|
//Headings
|
||||||
$h1-font-size: $font-size-base * 3;
|
$h1-font-size: $font-size-base * 3;
|
||||||
|
|
@ -18,7 +18,7 @@ module.exports = {
|
||||||
sass: { // Load Order Matters!!!
|
sass: { // Load Order Matters!!!
|
||||||
prependData: `
|
prependData: `
|
||||||
@import "./node_modules/bootstrap/scss/functions";
|
@import "./node_modules/bootstrap/scss/functions";
|
||||||
@import "@/styles/uxStyles.scss";
|
@import "@/styles/uxVariables.scss";
|
||||||
@import "./node_modules/bootstrap/scss/variables";
|
@import "./node_modules/bootstrap/scss/variables";
|
||||||
@import "./node_modules/bootstrap/scss/mixins";
|
@import "./node_modules/bootstrap/scss/mixins";
|
||||||
@import "./node_modules/bootstrap/scss/bootstrap";
|
@import "./node_modules/bootstrap/scss/bootstrap";
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@ module.exports = {
|
||||||
sass: { // Load Order Matters!!!
|
sass: { // Load Order Matters!!!
|
||||||
prependData: `
|
prependData: `
|
||||||
@import "./node_modules/bootstrap/scss/functions";
|
@import "./node_modules/bootstrap/scss/functions";
|
||||||
@import "@/styles/uxStyles.scss";
|
@import "@/styles/uxVariables.scss";
|
||||||
@import "./node_modules/bootstrap/scss/variables";
|
@import "./node_modules/bootstrap/scss/variables";
|
||||||
@import "./node_modules/bootstrap/scss/mixins";
|
@import "./node_modules/bootstrap/scss/mixins";
|
||||||
@import "./node_modules/bootstrap/scss/bootstrap";
|
@import "./node_modules/bootstrap/scss/bootstrap";
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue