fix duplicate key error

This commit is contained in:
Sanchay Singh 2025-04-15 11:38:42 +05:30
parent 5a11bd87c8
commit a63f2b0c9b
1 changed files with 9 additions and 9 deletions

View File

@ -478,55 +478,55 @@ $utilities: map-merge(
values: $spacers values: $spacers
), ),
// Border Width Utilities // Border Width Utilities
"border": ( "border-width": (
responsive: true, responsive: true,
property: border-width, property: border-width,
class: b, class: b,
values: $border-widths values: $border-widths
), ),
"border-top": ( "border-top-width": (
responsive: true, responsive: true,
property: border-top-width, property: border-top-width,
class: bt, class: bt,
values: $border-widths values: $border-widths
), ),
"border-bottom": ( "border-bottom-width": (
responsive: true, responsive: true,
property: border-bottom-width, property: border-bottom-width,
class: bb, class: bb,
values: $border-widths values: $border-widths
), ),
"border-left": ( "border-left-width": (
responsive: true, responsive: true,
property: border-left-width, property: border-left-width,
class: bl, class: bl,
values: $border-widths values: $border-widths
), ),
"border-right": ( "border-right-width": (
responsive: true, responsive: true,
property: border-right-width, property: border-right-width,
class: br, class: br,
values: $border-widths values: $border-widths
), ),
"border-start": ( "border-start-width": (
responsive: true, responsive: true,
property: border-inline-start-width, property: border-inline-start-width,
class: bs, class: bs,
values: $border-widths values: $border-widths
), ),
"border-end": ( "border-end-width": (
responsive: true, responsive: true,
property: border-inline-end-width, property: border-inline-end-width,
class: be, class: be,
values: $border-widths values: $border-widths
), ),
"border-x": ( "border-x-width": (
responsive: true, responsive: true,
property: border-left-width border-right-width, property: border-left-width border-right-width,
class: bx, class: bx,
values: $border-widths values: $border-widths
), ),
"border-y": ( "border-y-width": (
responsive: true, responsive: true,
property: border-top-width border-bottom-width, property: border-top-width border-bottom-width,
class: by, class: by,