Skip to content

Commit

Permalink
fix: Compilation issues (#1595)
Browse files Browse the repository at this point in the history
  • Loading branch information
JKMarkowski authored Jan 8, 2021
1 parent af806ca commit 9e089ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scss/_settings.scss
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ $fd-colors: map-merge((
4: hsl(28, 86.7%, 97.1%), // #FEF7F1 Semantic Colors alert background
5: hsl(0, 100%, 96.1%), // #FFEBEB Semantic Colors negative background
6: hsl(210, 100%, 98%), // #F5FAFF Semantic Colors info background
7: hsl(0, 0, 95.7%) // #F4F4F4 neutral alert background
7: hsl(0, 0%, 95.7%) // #F4F4F4 neutral alert background
),
"neutral": (
1: hsl(210, 3%, 98%), // #FAFAFA UI Neutral UI 1
Expand Down Expand Up @@ -163,7 +163,7 @@ $fd-colors-action-states: map-merge((
$fd-link-color: map-get($fd-colors-action, 1) !default;
$fd-link-color--hover: adjust-color($fd-link-color, $lightness: -7%) !default;
$fd-link-color--active: darken($fd-link-color, 10) !default;
$fd-link-color--pressed: adjust-color($fd-link-color, $lightness: -10) !default;
$fd-link-color--pressed: adjust-color($fd-link-color, $lightness: -10%) !default;
$fd-link-color--disabled: rgba($fd-link-color, 0.4) !default;
//deprecate these ----^

Expand Down

0 comments on commit 9e089ef

Please sign in to comment.