From 179757ee3aea779287095b374a72867126ad16e2 Mon Sep 17 00:00:00 2001 From: Cameron Huntington Date: Sun, 7 Feb 2021 14:02:02 -0600 Subject: [PATCH] alphabetize transformOrigin and transitionDuration properties (#2828) --- stubs/defaultConfig.stub.js | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/stubs/defaultConfig.stub.js b/stubs/defaultConfig.stub.js index 0b65837d6dac..cba5e97f2cb8 100644 --- a/stubs/defaultConfig.stub.js +++ b/stubs/defaultConfig.stub.js @@ -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))', @@ -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', @@ -628,7 +627,8 @@ module.exports = { 700: '700ms', 1000: '1000ms', }, - transitionDelay: { + transitionDuration: { + DEFAULT: '150ms', 75: '75ms', 100: '100ms', 150: '150ms',