Skip to content

Commit

Permalink
Fixed a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Zaydek Michels-Gualtieri committed Oct 17, 2020
1 parent ddcb1b5 commit 6e68556
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
@import "./mixins/margin-from-range";
@import "./mixins/margin-gap-from-range";
@import "./mixins/max-width-from-map";
@import "./mixins/min-h-from-range";
@import "./mixins/min-height-from-range";
@import "./mixins/padding-from-range";
@import "./mixins/pointer-events";
@import "./mixins/position-from-range";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

@include generate-from-range((min-height), "min-h", $range, $conv-fn);
#{$ampersand}min-h-full {
height: 100%;
min-height: 100%;
}
#{$ampersand}min-h-screen {
height: 100vh;
min-height: 100vh;
}
}

0 comments on commit 6e68556

Please sign in to comment.