Rename uxStyles to uxVariables.

This commit is contained in:
Bryan 2021-11-04 15:47:38 -04:00
parent 3ceb550045
commit b9f9d35ebd
3 changed files with 7 additions and 7 deletions

View file

@ -115,11 +115,11 @@ $font-family-code: $font-family-monospace;
$font-size-base: 1rem; // Assumes the browser default, typically `16px`
//Font weight
$font-weight-lighter: lighter !default;
$font-weight-light: 300 !default;
$font-weight-normal: 400 !default;
$font-weight-bold: 500 !default;
$font-weight-bolder: bolder !default;
$font-weight-lighter: lighter;
$font-weight-light: 300;
$font-weight-normal: 400;
$font-weight-bold: 500;
$font-weight-bolder: bolder;
//Headings
$h1-font-size: $font-size-base * 3;

View file

@ -18,7 +18,7 @@ module.exports = {
sass: { // Load Order Matters!!!
prependData: `
@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/mixins";
@import "./node_modules/bootstrap/scss/bootstrap";

View file

@ -8,7 +8,7 @@ module.exports = {
sass: { // Load Order Matters!!!
prependData: `
@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/mixins";
@import "./node_modules/bootstrap/scss/bootstrap";