tailwindcss/__tests__/fixtures/tailwind-output-with-explicit-screen-utilities.css
2020-10-18 15:43:50 -04:00

38 lines
403 B
CSS

.example {
color: red;
}
@media (min-width: 640px) {
.sm\:example {
color: red;
}
}
@media (min-width: 768px) {
.md\:example {
color: red;
}
}
@media (min-width: 1024px) {
.lg\:example {
color: red;
}
}
@media (min-width: 1280px) {
.xl\:example {
color: red;
}
}
@media (min-width: 1536px) {
.\32xl\:example {
color: red;
}
}
.john {
content: "wick";
}