Skip to content

Commit

Permalink
Fix: border-top, border-bottom, border-left, border-right are…
Browse files Browse the repository at this point in the history
… incorrectly set to `Native`, should be `NativeShorthand`
  • Loading branch information
1aron committed Nov 5, 2023
1 parent 8625cf1 commit 151e456
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/css/src/config/rules.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1118,25 +1118,25 @@ const rules = {
// border
borderTop: {
match: /^bt:./,
layer: CoreLayer.Native,
layer: CoreLayer.NativeShorthand,
unit: 'rem',
colored: true
} as RuleOptions,
borderBottom: {
match: /^bb:./,
layer: CoreLayer.Native,
layer: CoreLayer.NativeShorthand,
unit: 'rem',
colored: true
} as RuleOptions,
borderLeft: {
match: /^bl:./,
layer: CoreLayer.Native,
layer: CoreLayer.NativeShorthand,
unit: 'rem',
colored: true
} as RuleOptions,
borderRight: {
match: /^br:./,
layer: CoreLayer.Native,
layer: CoreLayer.NativeShorthand,
unit: 'rem',
colored: true
} as RuleOptions,
Expand Down

0 comments on commit 151e456

Please sign in to comment.