Skip to content

Commit

Permalink
alphabetize transformOrigin and transitionDuration properties (#2828)
Browse files Browse the repository at this point in the history
  • Loading branch information
chuntington committed Feb 7, 2021
1 parent f8ff081 commit 179757e
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions stubs/defaultConfig.stub.js
Original file line number Diff line number Diff line change
Expand Up @@ -309,17 +309,6 @@ module.exports = {
6: '6',
7: '7',
},
transformOrigin: {
center: 'center',
top: 'top',
'top-right': 'top right',
right: 'right',
'bottom-right': 'bottom right',
bottom: 'bottom',
'bottom-left': 'bottom left',
left: 'left',
'top-left': 'top left',
},
gridTemplateColumns: {
none: 'none',
1: 'repeat(1, minmax(0, 1fr))',
Expand Down Expand Up @@ -617,8 +606,18 @@ module.exports = {
},
textColor: (theme) => theme('colors'),
textOpacity: (theme) => theme('opacity'),
transitionDuration: {
DEFAULT: '150ms',
transformOrigin: {
center: 'center',
top: 'top',
'top-right': 'top right',
right: 'right',
'bottom-right': 'bottom right',
bottom: 'bottom',
'bottom-left': 'bottom left',
left: 'left',
'top-left': 'top left',
},
transitionDelay: {
75: '75ms',
100: '100ms',
150: '150ms',
Expand All @@ -628,7 +627,8 @@ module.exports = {
700: '700ms',
1000: '1000ms',
},
transitionDelay: {
transitionDuration: {
DEFAULT: '150ms',
75: '75ms',
100: '100ms',
150: '150ms',
Expand Down

0 comments on commit 179757e

Please sign in to comment.