aboutsummaryrefslogtreecommitdiffstats
path: root/src/_responsive.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/_responsive.scss')
-rw-r--r--src/_responsive.scss4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/_responsive.scss b/src/_responsive.scss
index 6f2a416..a3d8445 100644
--- a/src/_responsive.scss
+++ b/src/_responsive.scss
@@ -391,9 +391,9 @@ $iro-responsive-context-id: 'responsive' !default;
391 } 391 }
392 392
393 @if not $vertical { 393 @if not $vertical {
394 $calc: unquote('#{$calc}#{$value-diff} * ((100vw - #{$min-viewport}) / #{$viewport-diff})'); 394 $calc: unquote('#{$calc}#{$value-diff} * (100vw - #{$min-viewport}) / #{$viewport-diff}');
395 } @else { 395 } @else {
396 $calc: unquote('#{$calc}#{$value-diff} * ((100vh - #{$min-viewport}) / #{$viewport-diff})'); 396 $calc: unquote('#{$calc}#{$value-diff} * (100vh - #{$min-viewport}) / #{$viewport-diff}');
397 } 397 }
398 398
399 @if $without-calc { 399 @if $without-calc {