From 5500524d59b13f8c8f1d3f931b930152bc3e6b98 Mon Sep 17 00:00:00 2001 From: Lukas Oppermann Date: Wed, 11 Dec 2024 16:40:36 +0100 Subject: [PATCH] change borderWith values to px --- src/tokens/functional/size/border.json5 | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/tokens/functional/size/border.json5 b/src/tokens/functional/size/border.json5 index 115a0fbcb..ba26d13a6 100644 --- a/src/tokens/functional/size/border.json5 +++ b/src/tokens/functional/size/border.json5 @@ -15,21 +15,21 @@ }, }, borderWidth: { - thin: { - $value: 'max(1px, 0.0625rem)', - $type: 'string', - }, default: { $value: '{borderWidth.thin}', - $type: 'string', + $type: 'dimension', + }, + thin: { + $value: '1px', + $type: 'dimension', }, thick: { - $value: 'max(2px, 0.125rem)', - $type: 'string', + $value: '2px', + $type: 'dimension', }, thicker: { - $value: 'max(4px, 0.25rem)', - $type: 'string', + $value: '4px', + $type: 'dimension', }, }, borderRadius: {