Skip to content

Commit 33af944

Browse files
committed
fix: Re-added box-shadow unset check
1 parent a353867 commit 33af944

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/ui/styling/css-utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export function parseCSSShorthand(value: string): {
4040
const parts = value.trim().split(PARTS_RE);
4141
const first = parts[0];
4242

43-
if (['', 'none'].includes(first)) {
43+
if (['', 'none', 'unset'].includes(first)) {
4444
return null;
4545
}
4646

0 commit comments

Comments
 (0)