Skip to content

Commit

Permalink
(#355) Remediate SASS Depreciation Warnings
Browse files Browse the repository at this point in the history
This remediates two SASS depreciation warnings that were occurring when
running `gulp`. The version of SASS choco-theme uses has been pinned to
a specific major and minor version, while still allowing patch releases.

In addition, a percentage has been passed to a SASS variable instead
of just 0, as required.
  • Loading branch information
st3phhays committed Sep 26, 2023
1 parent 17eab32 commit 0083d54
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
"mousetrap": "^1.6.5",
"nouislider": "^15.7.0",
"rimraf": "^3.0.2",
"sass": "^1.53.0",
"sass": "~1.64.2",
"stylelint": "^14.14.0",
"stylelint-config-standard": "^29.0.0",
"stylelint-config-standard-scss": "^5.0.0",
Expand Down
4 changes: 2 additions & 2 deletions scss/variables/_boxstarter.scss
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ $alert-border-radius: 0;
$alert-border-width: 0;
$alert-margin-bottom: 0;
$alert-border-width: 0;
$alert-bg-scale: 0;
$alert-color-scale: 0;
$alert-bg-scale: 0%;
$alert-color-scale: 0%;

// Tabs
$nav-tabs-link-active-bg: $white;
Expand Down
4 changes: 2 additions & 2 deletions scss/variables/_chocolatey.scss
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ $alert-border-radius: 0;
$alert-border-width: 0;
$alert-margin-bottom: 0;
$alert-border-width: 0;
$alert-bg-scale: 0;
$alert-color-scale: 0;
$alert-bg-scale: 0%;
$alert-color-scale: 0%;

// Tabs
$nav-tabs-link-active-bg: $white;
Expand Down

0 comments on commit 0083d54

Please sign in to comment.