Skip to content
This repository has been archived by the owner on Feb 23, 2024. It is now read-only.

Commit

Permalink
Use consistent name for SCSS variables
Browse files Browse the repository at this point in the history
  • Loading branch information
Aljullu committed May 26, 2020
1 parent 26c7062 commit dabbdb3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assets/css/abstracts/_mixins.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$font-sizes: (
$fontSizes: (
"smaller": 0.75,
"small": 0.875,
"regular": 1,
Expand All @@ -8,7 +8,7 @@ $font-sizes: (

// Maps a named font-size to its em equivalent.
@mixin font-size($sizeName) {
font-size: map-get($font-sizes, $sizeName) * 1em;
font-size: map-get($fontSizes, $sizeName) * 1em;
}

@keyframes loading-fade {
Expand Down

0 comments on commit dabbdb3

Please sign in to comment.