Fix radio and label margin in right-to-left layouts

We used `margin-left` in commit b4eba055c, but when using right-to-left
layout, the property we should use is `margin-right`. So we're using
`margin-#{$global-left}` as usual.
This commit is contained in:
Javi Martín
2025-08-12 12:43:01 +02:00
parent b76eba4c2e
commit dae932b0d2

View File

@@ -90,7 +90,7 @@
@include radio-or-checkbox-and-label-alignment; @include radio-or-checkbox-and-label-alignment;
span { span {
margin-left: 1ch; margin-#{$global-left}: 1ch;
} }
} }
} }