1
0
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:
copilot-swe-agent[bot]
2026-07-31 21:08:16 +00:00
committed by GitHub
parent d240d808dd
commit a68fdbed03
+1 -6
View File
@@ -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() {