Upgrade dependencies, Fix #4026

This commit is contained in:
Jeremy Thomas
2026-03-01 20:10:40 +00:00
parent 210b6f03b7
commit 193c7aaa73
5 changed files with 94 additions and 70 deletions

View File

@@ -409,8 +409,12 @@
}
@mixin ltr-property($property, $spacing, $right: true) {
$normal: if($right, "right", "left");
$opposite: if($right, "left", "right");
$normal: "right";
$opposite: "left";
@if not $right {
$normal: "left";
$opposite: "right";
}
@if iv.$rtl {
#{$property}-#{$opposite}: $spacing;
@@ -420,8 +424,12 @@
}
@mixin ltr-position($spacing, $right: true) {
$normal: if($right, "right", "left");
$opposite: if($right, "left", "right");
$normal: "right";
$opposite: "left";
@if not $right {
$normal: "left";
$opposite: "right";
}
@if iv.$rtl {
#{$opposite}: $spacing;