From b9f9d35ebdacd0e3311e52d1a934411e5aad0d34 Mon Sep 17 00:00:00 2001 From: Bryan Date: Thu, 4 Nov 2021 15:47:38 -0400 Subject: [PATCH] Rename uxStyles to uxVariables. --- src/styles/{uxStyles.scss => uxVariables.scss} | 10 +++++----- vue.config.js | 2 +- vue.release.config.js | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) rename src/styles/{uxStyles.scss => uxVariables.scss} (94%) diff --git a/src/styles/uxStyles.scss b/src/styles/uxVariables.scss similarity index 94% rename from src/styles/uxStyles.scss rename to src/styles/uxVariables.scss index 2b2211595..f3e15b271 100644 --- a/src/styles/uxStyles.scss +++ b/src/styles/uxVariables.scss @@ -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; diff --git a/vue.config.js b/vue.config.js index 6389aa1c8..d66a7893c 100644 --- a/vue.config.js +++ b/vue.config.js @@ -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"; diff --git a/vue.release.config.js b/vue.release.config.js index d166206d0..a5419b6e3 100644 --- a/vue.release.config.js +++ b/vue.release.config.js @@ -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";