Skip to content

Commit

Permalink
Remove min-w/h-none
Browse files Browse the repository at this point in the history
`none` is not a valid value for `min-width/height`.
  • Loading branch information
wongjn committed Jan 25, 2025
1 parent a8c54ac commit afeed67
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions packages/tailwindcss/src/utilities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -896,9 +896,7 @@ export function createUtilities(theme: Theme) {
staticUtility(`min-h-screen`, [['min-height', '100vh']])
staticUtility(`max-h-screen`, [['max-height', '100vh']])

staticUtility(`min-w-none`, [['min-width', 'none']])
staticUtility(`max-w-none`, [['max-width', 'none']])
staticUtility(`min-h-none`, [['min-height', 'none']])
staticUtility(`max-h-none`, [['max-height', 'none']])

spacingUtility(
Expand Down

0 comments on commit afeed67

Please sign in to comment.