1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-22 01:44:25 +04:00

Refactor SCSS utilities to use logical properties for border-radius

This commit is contained in:
codecalm
2025-11-24 00:06:57 +01:00
parent 0106d6b7d2
commit d0fe913453

View File

@@ -822,7 +822,7 @@ $utilities: (
),
),
'rounded-top': (
property: border-top-left-radius border-top-right-radius,
property: border-start-start-radius border-start-end-radius,
class: rounded-top,
values: (
null: var(--#{$prefix}border-radius),
@@ -837,7 +837,7 @@ $utilities: (
),
),
'rounded-end': (
property: border-top-right-radius border-bottom-right-radius,
property: border-end-end-radius border-end-start-radius,
class: rounded-end,
values: (
null: var(--#{$prefix}border-radius),
@@ -852,7 +852,7 @@ $utilities: (
),
),
'rounded-bottom': (
property: border-bottom-right-radius border-bottom-left-radius,
property: border-end-end-radius border-end-start-radius,
class: rounded-bottom,
values: (
null: var(--#{$prefix}border-radius),
@@ -867,7 +867,7 @@ $utilities: (
),
),
'rounded-start': (
property: border-bottom-left-radius border-top-left-radius,
property: border-start-start-radius border-start-end-radius,
class: rounded-start,
values: (
null: var(--#{$prefix}border-radius),