Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
144 changes: 144 additions & 0 deletions __tests__/fixtures/tailwind-output-ie11.css
Original file line number Diff line number Diff line change
Expand Up @@ -577,6 +577,50 @@ video {
height: auto;
}

@keyframes spin {
from {
transform: rotate(0deg);
}

to {
transform: rotate(360deg);
}
}

@keyframes ping {
0% {
transform: scale(1);
opacity: 1;
}

75%, 100% {
transform: scale(2);
opacity: 0;
}
}

@keyframes pulse {
0%, 100% {
opacity: 1;
}

50% {
opacity: .5;
}
}

@keyframes bounce {
0%, 100% {
transform: translateY(-25%);
animation-timing-function: cubic-bezier(0.8,0,1,1);
}

50% {
transform: translateY(0);
animation-timing-function: cubic-bezier(0,0,0.2,1);
}
}

.container {
width: 100%;
}
Expand Down Expand Up @@ -10950,6 +10994,26 @@ video {
transition-delay: 1000ms;
}

.animate-none {
animation: none;
}

.animate-spin {
animation: spin 1s linear infinite;
}

.animate-ping {
animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.animate-pulse {
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-bounce {
animation: bounce 1s infinite;
}

.example {
font-weight: 700;
color: #f56565;
Expand Down Expand Up @@ -21329,6 +21393,26 @@ video {
transition-delay: 1000ms;
}

.sm\:animate-none {
animation: none;
}

.sm\:animate-spin {
animation: spin 1s linear infinite;
}

.sm\:animate-ping {
animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.sm\:animate-pulse {
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.sm\:animate-bounce {
animation: bounce 1s infinite;
}

.sm\:example {
font-weight: 700;
color: #f56565;
Expand Down Expand Up @@ -31709,6 +31793,26 @@ video {
transition-delay: 1000ms;
}

.md\:animate-none {
animation: none;
}

.md\:animate-spin {
animation: spin 1s linear infinite;
}

.md\:animate-ping {
animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.md\:animate-pulse {
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.md\:animate-bounce {
animation: bounce 1s infinite;
}

.md\:example {
font-weight: 700;
color: #f56565;
Expand Down Expand Up @@ -42089,6 +42193,26 @@ video {
transition-delay: 1000ms;
}

.lg\:animate-none {
animation: none;
}

.lg\:animate-spin {
animation: spin 1s linear infinite;
}

.lg\:animate-ping {
animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.lg\:animate-pulse {
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.lg\:animate-bounce {
animation: bounce 1s infinite;
}

.lg\:example {
font-weight: 700;
color: #f56565;
Expand Down Expand Up @@ -52469,6 +52593,26 @@ video {
transition-delay: 1000ms;
}

.xl\:animate-none {
animation: none;
}

.xl\:animate-spin {
animation: spin 1s linear infinite;
}

.xl\:animate-ping {
animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.xl\:animate-pulse {
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.xl\:animate-bounce {
animation: bounce 1s infinite;
}

.xl\:example {
font-weight: 700;
color: #f56565;
Expand Down
144 changes: 144 additions & 0 deletions __tests__/fixtures/tailwind-output-important.css
Original file line number Diff line number Diff line change
Expand Up @@ -577,6 +577,50 @@ video {
height: auto;
}

@keyframes spin {
from {
transform: rotate(0deg);
}

to {
transform: rotate(360deg);
}
}

@keyframes ping {
0% {
transform: scale(1);
opacity: 1;
}

75%, 100% {
transform: scale(2);
opacity: 0;
}
}

@keyframes pulse {
0%, 100% {
opacity: 1;
}

50% {
opacity: .5;
}
}

@keyframes bounce {
0%, 100% {
transform: translateY(-25%);
animation-timing-function: cubic-bezier(0.8,0,1,1);
}

50% {
transform: translateY(0);
animation-timing-function: cubic-bezier(0,0,0.2,1);
}
}

.container {
width: 100%;
}
Expand Down Expand Up @@ -14336,6 +14380,26 @@ video {
transition-delay: 1000ms !important;
}

.animate-none {
animation: none !important;
}

.animate-spin {
animation: spin 1s linear infinite !important;
}

.animate-ping {
animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
}

.animate-pulse {
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
}

.animate-bounce {
animation: bounce 1s infinite !important;
}

.example {
font-weight: 700;
color: #f56565;
Expand Down Expand Up @@ -28101,6 +28165,26 @@ video {
transition-delay: 1000ms !important;
}

.sm\:animate-none {
animation: none !important;
}

.sm\:animate-spin {
animation: spin 1s linear infinite !important;
}

.sm\:animate-ping {
animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
}

.sm\:animate-pulse {
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
}

.sm\:animate-bounce {
animation: bounce 1s infinite !important;
}

.sm\:example {
font-weight: 700;
color: #f56565;
Expand Down Expand Up @@ -41867,6 +41951,26 @@ video {
transition-delay: 1000ms !important;
}

.md\:animate-none {
animation: none !important;
}

.md\:animate-spin {
animation: spin 1s linear infinite !important;
}

.md\:animate-ping {
animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
}

.md\:animate-pulse {
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
}

.md\:animate-bounce {
animation: bounce 1s infinite !important;
}

.md\:example {
font-weight: 700;
color: #f56565;
Expand Down Expand Up @@ -55633,6 +55737,26 @@ video {
transition-delay: 1000ms !important;
}

.lg\:animate-none {
animation: none !important;
}

.lg\:animate-spin {
animation: spin 1s linear infinite !important;
}

.lg\:animate-ping {
animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
}

.lg\:animate-pulse {
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
}

.lg\:animate-bounce {
animation: bounce 1s infinite !important;
}

.lg\:example {
font-weight: 700;
color: #f56565;
Expand Down Expand Up @@ -69399,6 +69523,26 @@ video {
transition-delay: 1000ms !important;
}

.xl\:animate-none {
animation: none !important;
}

.xl\:animate-spin {
animation: spin 1s linear infinite !important;
}

.xl\:animate-ping {
animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
}

.xl\:animate-pulse {
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
}

.xl\:animate-bounce {
animation: bounce 1s infinite !important;
}

.xl\:example {
font-weight: 700;
color: #f56565;
Expand Down
Loading