Skip to content

Commit

Permalink
fix typo in BorderStyle type
Browse files Browse the repository at this point in the history
  • Loading branch information
Jocs authored and chearon committed Apr 18, 2024
1 parent 28e9150 commit a2b719a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ type OuterDisplay = 'inline' | 'block' | 'none';

type InnerDisplay = 'flow' | 'flow-root' | 'none';

type BorderStyle = 'none' | 'hiden' | 'dotted' | 'dashed' | 'solid'
type BorderStyle = 'none' | 'hidden' | 'dotted' | 'dashed' | 'solid'
| 'double' | 'groove' | 'ridge' | 'inset' | 'outset'

type BoxSizing = 'border-box' | 'content-box' | 'padding-box';
Expand Down

0 comments on commit a2b719a

Please sign in to comment.