tailwindcss/__tests__/fixtures/tailwind-output-with-explicit-screen-utilities.css
Patrick Heller 💩 6cec22b523 make tests green
2017-11-04 00:07:02 +01:00

32 lines
330 B
CSS

.example {
color: red;
}
@media (min-width: 576px) {
.sm\:example {
color: red;
}
}
@media (min-width: 768px) {
.md\:example {
color: red;
}
}
@media (min-width: 992px) {
.lg\:example {
color: red;
}
}
@media (min-width: 1200px) {
.xl\:example {
color: red;
}
}
.john {
content: "wick";
}