Skip to content

Commit

Permalink
change borderWith values to px
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasoppermann committed Dec 11, 2024
1 parent 7965c62 commit 5500524
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/tokens/functional/size/border.json5
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down

0 comments on commit 5500524

Please sign in to comment.