From d720639d6535eb02fe9c6c4bb99d063e572b16de Mon Sep 17 00:00:00 2001 From: simongehrig Date: Wed, 26 Apr 2017 17:11:41 +0200 Subject: [PATCH] SCSS Framework Layout > Image > Cover > Aspect ratio was 9/16 instead of 16/9 for 16:9 --> corrected !! CAREFUL WITH EXISTING PAGES !! --- mixins/layout/image/_cover.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mixins/layout/image/_cover.scss b/mixins/layout/image/_cover.scss index c44d834..26e22c2 100644 --- a/mixins/layout/image/_cover.scss +++ b/mixins/layout/image/_cover.scss @@ -14,6 +14,6 @@ &:after { content: ""; display: block; - padding-bottom: 100% * $heightaspect; + padding-bottom: 100% / $heightaspect; } } \ No newline at end of file