Skip to content

Commit

Permalink
overflow can be inherited or initial
Browse files Browse the repository at this point in the history
whoops, but those are never type checked anyways
  • Loading branch information
chearon committed Oct 18, 2024
1 parent 04dde63 commit 9cf992d
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 @@ -171,7 +171,7 @@ export interface DeclaredStyle {
zIndex?: number | 'auto' | Inherited | Initial;
wordBreak?: 'break-word' | 'normal' | Inherited | Initial;
overflowWrap?: 'anywhere' | 'break-word' | 'normal' | Inherited | Initial;
overflow?: 'visible' | 'hidden';
overflow?: 'visible' | 'hidden' | Inherited | Initial;
}

export const EMPTY_STYLE: DeclaredStyle = {};
Expand Down

0 comments on commit 9cf992d

Please sign in to comment.