From a63f2b0c9bd7368da900fc059c3d2fb38609f39f Mon Sep 17 00:00:00 2001 From: Sanchay Singh Date: Tue, 15 Apr 2025 11:38:42 +0530 Subject: [PATCH] fix duplicate key error --- scss/_utilities.scss | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/scss/_utilities.scss b/scss/_utilities.scss index ef83269a9a..2033cf40c1 100644 --- a/scss/_utilities.scss +++ b/scss/_utilities.scss @@ -478,55 +478,55 @@ $utilities: map-merge( values: $spacers ), // Border Width Utilities - "border": ( + "border-width": ( responsive: true, property: border-width, class: b, values: $border-widths ), - "border-top": ( + "border-top-width": ( responsive: true, property: border-top-width, class: bt, values: $border-widths ), - "border-bottom": ( + "border-bottom-width": ( responsive: true, property: border-bottom-width, class: bb, values: $border-widths ), - "border-left": ( + "border-left-width": ( responsive: true, property: border-left-width, class: bl, values: $border-widths ), - "border-right": ( + "border-right-width": ( responsive: true, property: border-right-width, class: br, values: $border-widths ), - "border-start": ( + "border-start-width": ( responsive: true, property: border-inline-start-width, class: bs, values: $border-widths ), - "border-end": ( + "border-end-width": ( responsive: true, property: border-inline-end-width, class: be, values: $border-widths ), - "border-x": ( + "border-x-width": ( responsive: true, property: border-left-width border-right-width, class: bx, values: $border-widths ), - "border-y": ( + "border-y-width": ( responsive: true, property: border-top-width border-bottom-width, class: by,