Skip to content

Commit

Permalink
correct background-position to background-repeat
Browse files Browse the repository at this point in the history
  • Loading branch information
lunelson committed May 28, 2022
1 parent a8d3c07 commit 1a70e0a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/preset-wind/src/rules/background.ts
Expand Up @@ -112,10 +112,10 @@ export const backgroundStyles: Rule[] = [
// repeats
['bg-repeat', { 'background-repeat': 'repeat' }],
['bg-no-repeat', { 'background-repeat': 'no-repeat' }],
['bg-repeat-x', { 'background-position': 'repeat-x' }],
['bg-repeat-y', { 'background-position': 'repeat-y' }],
['bg-repeat-round', { 'background-position': 'round' }],
['bg-repeat-space', { 'background-position': 'space' }],
['bg-repeat-x', { 'background-repeat': 'repeat-x' }],
['bg-repeat-y', { 'background-repeat': 'repeat-y' }],
['bg-repeat-round', { 'background-repeat': 'round' }],
['bg-repeat-space', { 'background-repeat': 'space' }],

// origins
['bg-origin-border', { 'background-origin': 'border-box' }],
Expand Down

0 comments on commit 1a70e0a

Please sign in to comment.