tailwindcss/__tests__/fixtures/tailwind-output-with-explicit-screen-utilities.css
2019-03-13 13:04:04 -04:00

32 lines
331 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;
}
}
.john {
content: "wick";
}