From d7b876818f81c06b19b12acab78eaad0023c34d8 Mon Sep 17 00:00:00 2001 From: reverend Date: Tue, 29 Dec 2020 19:11:02 +0100 Subject: [PATCH] Bugfix: no wrap after breakpoint --- components/01_Layouts/flexRow/_flexRow.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/01_Layouts/flexRow/_flexRow.scss b/components/01_Layouts/flexRow/_flexRow.scss index 65c463d..ef61706 100644 --- a/components/01_Layouts/flexRow/_flexRow.scss +++ b/components/01_Layouts/flexRow/_flexRow.scss @@ -27,6 +27,8 @@ * breaks when the container is smaller than $-localBreakPoint or when the viewport is smaller than $-mediaBreakPoint. */ @mixin RV-FlexRow__Container--breakPoint($-localBreakPoint: 500px, $-mediaBreakPoint: null) { + flex-wrap: wrap; + * { flex-basis: calc(#{$-localBreakPoint} * 999 - 100% * 999); }