mirror of
https://github.com/tabler/tabler.git
synced 2026-08-05 19:03:18 +04:00
Fix invalid Sass if() syntax in _rfs.scss min-width block
This commit is contained in:
committed by
GitHub
parent
d240d808dd
commit
a68fdbed03
@@ -286,12 +286,7 @@ $rfs-mq-property-height: if($rfs-mode == max-media-query, max-height, min-height
|
||||
#{$property}: if($rfs-mode == max-media-query, $val, $fluid-val);
|
||||
|
||||
// Include safari iframe resize fix if needed
|
||||
min-width: if(
|
||||
sass($rfs-safari-iframe-resize-bug-fix): (
|
||||
0 * 1vw,
|
||||
);
|
||||
else: null
|
||||
);
|
||||
min-width: if($rfs-safari-iframe-resize-bug-fix, 0 * 1vw, null);
|
||||
}
|
||||
|
||||
@include _rfs-media-query-rule() {
|
||||
|
||||
Reference in New Issue
Block a user