Skip to content

Commit 179757e

Browse files
authored
alphabetize transformOrigin and transitionDuration properties (#2828)
1 parent f8ff081 commit 179757e

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

stubs/defaultConfig.stub.js

+14-14
Original file line numberDiff line numberDiff line change
@@ -309,17 +309,6 @@ module.exports = {
309309
6: '6',
310310
7: '7',
311311
},
312-
transformOrigin: {
313-
center: 'center',
314-
top: 'top',
315-
'top-right': 'top right',
316-
right: 'right',
317-
'bottom-right': 'bottom right',
318-
bottom: 'bottom',
319-
'bottom-left': 'bottom left',
320-
left: 'left',
321-
'top-left': 'top left',
322-
},
323312
gridTemplateColumns: {
324313
none: 'none',
325314
1: 'repeat(1, minmax(0, 1fr))',
@@ -617,8 +606,18 @@ module.exports = {
617606
},
618607
textColor: (theme) => theme('colors'),
619608
textOpacity: (theme) => theme('opacity'),
620-
transitionDuration: {
621-
DEFAULT: '150ms',
609+
transformOrigin: {
610+
center: 'center',
611+
top: 'top',
612+
'top-right': 'top right',
613+
right: 'right',
614+
'bottom-right': 'bottom right',
615+
bottom: 'bottom',
616+
'bottom-left': 'bottom left',
617+
left: 'left',
618+
'top-left': 'top left',
619+
},
620+
transitionDelay: {
622621
75: '75ms',
623622
100: '100ms',
624623
150: '150ms',
@@ -628,7 +627,8 @@ module.exports = {
628627
700: '700ms',
629628
1000: '1000ms',
630629
},
631-
transitionDelay: {
630+
transitionDuration: {
631+
DEFAULT: '150ms',
632632
75: '75ms',
633633
100: '100ms',
634634
150: '150ms',

0 commit comments

Comments
 (0)