Skip to content

Commit c65fbf6

Browse files
Simplify translateY(0) to none
1 parent 5f545ea commit c65fbf6

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

__tests__/fixtures/tailwind-output-ie11.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10976,7 +10976,7 @@ video {
1097610976
}
1097710977

1097810978
50% {
10979-
transform: translateY(0);
10979+
transform: none;
1098010980
animation-timing-function: cubic-bezier(0,0,0.2,1);
1098110981
}
1098210982
}

__tests__/fixtures/tailwind-output-important.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14398,7 +14398,7 @@ video {
1439814398
}
1439914399

1440014400
50% {
14401-
transform: translateY(0);
14401+
transform: none;
1440214402
animation-timing-function: cubic-bezier(0,0,0.2,1);
1440314403
}
1440414404
}

__tests__/fixtures/tailwind-output-no-color-opacity.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11950,7 +11950,7 @@ video {
1195011950
}
1195111951

1195211952
50% {
11953-
transform: translateY(0);
11953+
transform: none;
1195411954
animation-timing-function: cubic-bezier(0,0,0.2,1);
1195511955
}
1195611956
}

__tests__/fixtures/tailwind-output.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14398,7 +14398,7 @@ video {
1439814398
}
1439914399

1440014400
50% {
14401-
transform: translateY(0);
14401+
transform: none;
1440214402
animation-timing-function: cubic-bezier(0,0,0.2,1);
1440314403
}
1440414404
}

stubs/defaultConfig.stub.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -645,7 +645,7 @@ module.exports = {
645645
animationTimingFunction: 'cubic-bezier(0.8,0,1,1)',
646646
},
647647
'50%': {
648-
transform: 'translateY(0)',
648+
transform: 'none',
649649
animationTimingFunction: 'cubic-bezier(0,0,0.2,1)',
650650
},
651651
},

0 commit comments

Comments
 (0)