Skip to content

Commit

Permalink
Remove moz and ms prefixes for user-select, hyphens, text-size-adjust
Browse files Browse the repository at this point in the history
  • Loading branch information
emmatown committed Jan 13, 2025
1 parent b9e4e27 commit 2683a39
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/cache/src/prefixer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,11 @@ function prefix(value: string, length: number): string {
case 6135:
case 4599:
case 4855:
return WEBKIT + value + value
// user-select, hyphens, text-size-adjust
case 4246:
case 6968:
case 2756:
return WEBKIT + value + MOZ + value + MS + value + value
return WEBKIT + value + value
// cursor
case 6187:
return (
Expand Down

0 comments on commit 2683a39

Please sign in to comment.