Skip to content

Commit

Permalink
🔖 (proportional-box) reverts version, fixes hopefully last bug
Browse files Browse the repository at this point in the history
  • Loading branch information
davejtoews committed Sep 10, 2020
1 parent c587f87 commit f9b656f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@evanshunt/derekstrap",
"version": "0.2.1",
"version": "0.2.0",
"description": "A base layout and styles library by Evans Hunt",
"main": "dist/main.js",
"sass": "_index.scss",
Expand Down
2 changes: 1 addition & 1 deletion proportional-box/_mixins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
}

@mixin proportional-height($aspect-ratio, $vw, $offset) {
height: calc(#{1 / $aspect-ratio} * ($vw - 2 * #{$offset}));
height: calc(#{1 / $aspect-ratio} * (#{$vw} - 2 * #{$offset}));
}

// Only the keys matter in the sizes map. The values aren't touched.
Expand Down

0 comments on commit f9b656f

Please sign in to comment.