Skip to content

Commit

Permalink
fix(typography): make font-size/line-height responsive
Browse files Browse the repository at this point in the history
  • Loading branch information
piofinn committed Jun 27, 2019
1 parent 76df23d commit edb236e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/core/src/typography/font-size.scss
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ $line-height--large-device: (
}

@mixin font-size--small-device($size) {
font-size: map-get($font-size--large-device, $size);
font-size: map-get($font-size--small-device, $size);
}

@mixin font-size($size) {
Expand All @@ -84,7 +84,7 @@ $line-height--large-device: (
}

@mixin line-height--small-device($size) {
line-height: map-get($line-height--large-device, $size);
line-height: map-get($line-height--small-device, $size);
}

@mixin line-height($size) {
Expand Down

0 comments on commit edb236e

Please sign in to comment.