prokat/api/tailwindcss-master/__tests__/fixtures/tailwind-output-with-explicit-screen-utilities.css
2025-06-16 18:28:08 +05:00

38 lines
440 B
CSS
Executable File

.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";
}