Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Reorder utilities
  • Loading branch information
thecrypticace committed Mar 25, 2025
commit e836538c86e5ea916fce2a93225806651858bfc8
8 changes: 4 additions & 4 deletions packages/tailwindcss/src/utilities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2390,15 +2390,15 @@ export function createUtilities(theme: Theme) {
staticUtility('bg-local', [['background-attachment', 'local']])
staticUtility('bg-scroll', [['background-attachment', 'scroll']])

staticUtility('bg-center', [['background-position', 'center']])
staticUtility('bg-top', [['background-position', 'top']])
staticUtility('bg-left-top', [['background-position', 'left top']])
staticUtility('bg-right-top', [['background-position', 'right top']])
staticUtility('bg-right', [['background-position', 'right']])
staticUtility('bg-right-bottom', [['background-position', 'right bottom']])
staticUtility('bg-bottom', [['background-position', 'bottom']])
staticUtility('bg-left-bottom', [['background-position', 'left bottom']])
staticUtility('bg-right-bottom', [['background-position', 'right bottom']])
staticUtility('bg-left', [['background-position', 'left']])
staticUtility('bg-left-top', [['background-position', 'left top']])
staticUtility('bg-right', [['background-position', 'right']])
staticUtility('bg-center', [['background-position', 'center']])

staticUtility('bg-repeat', [['background-repeat', 'repeat']])
staticUtility('bg-no-repeat', [['background-repeat', 'no-repeat']])
Expand Down