Skip to content

Commit

Permalink
Fix aspect-ratio mixin supports query
Browse files Browse the repository at this point in the history
  • Loading branch information
ronilaukkarinen committed Oct 7, 2022
1 parent 77e9547 commit d5642b2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
### [Unreleased]

* Add missing external-link-icon class
* Fix aspect-ratio mixin supports query

### 9.1.9: 2022-10-06

Expand Down
2 changes: 1 addition & 1 deletion sass/helpers/_aspect-ratio.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
aspect-ratio: #{$width} / #{$height};

// Support for Safari 10-14 (Big Sur and earlier)
@supports not (aspect-ratio: 1 / 1) {
@supports not (aspect-ratio: #{$width} / #{$height}) {
position: relative;

&::before {
Expand Down

0 comments on commit d5642b2

Please sign in to comment.