Skip to content

Commit

Permalink
Fix Sass warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
yous committed Oct 13, 2024
1 parent b814e74 commit 6a122f0
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# ChangeLog

## HEAD

- Fix Sass warnings

## 1.11.5 (2024-07-31)

- Fix Sass warnings
Expand Down
4 changes: 2 additions & 2 deletions _sass/whiteglass.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ $background-color: #fdfdfd !default;
$brand-color: #2568ba !default;

$grey-color: #757575 !default;
$grey-color-light: lighten($grey-color, 45%) !default;
$grey-color-dark: darken($grey-color, 20%) !default;
$grey-color-light: color.adjust($grey-color, $lightness: 45%) !default;
$grey-color-dark: color.adjust($grey-color, $lightness: -20%) !default;

// Width of the content area
$content-width: 800px !default;
Expand Down
2 changes: 1 addition & 1 deletion _sass/whiteglass/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ a {
text-decoration: none;

&:visited {
color: darken($brand-color, 10%);
color: color.adjust($brand-color, $lightness: -10%);
}

&:hover {
Expand Down
4 changes: 2 additions & 2 deletions assets/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ $background-color: #fdfdfd;
$brand-color: #2568ba;

$grey-color: #757575;
$grey-color-light: lighten($grey-color, 45%);
$grey-color-dark: darken($grey-color, 20%);
$grey-color-light: color.adjust($grey-color, $lightness: 45%);
$grey-color-dark: color.adjust($grey-color, $lightness: -20%);

// Width of the content area
$content-width: 800px;
Expand Down

0 comments on commit 6a122f0

Please sign in to comment.