mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
57 lines
963 B
CSS
57 lines
963 B
CSS
.responsive-in-components {
|
|
color: blue;
|
|
}
|
|
.variants-in-components {
|
|
color: red;
|
|
}
|
|
.both-in-components {
|
|
color: green;
|
|
}
|
|
.responsive-in-utilities {
|
|
color: blue;
|
|
}
|
|
.variants-in-utilities {
|
|
color: red;
|
|
}
|
|
.both-in-utilities {
|
|
color: green;
|
|
}
|
|
.responsive-at-root {
|
|
color: white;
|
|
}
|
|
.variants-at-root {
|
|
color: orange;
|
|
}
|
|
.both-at-root {
|
|
color: pink;
|
|
}
|
|
@media (min-width: 768px) {
|
|
.md\:focus\:responsive-in-components:focus {
|
|
color: blue;
|
|
}
|
|
.md\:focus\:variants-in-components:focus {
|
|
color: red;
|
|
}
|
|
.md\:focus\:both-in-components:focus {
|
|
color: green;
|
|
}
|
|
.md\:focus\:responsive-in-utilities:focus {
|
|
color: blue;
|
|
}
|
|
.md\:focus\:variants-in-utilities:focus {
|
|
color: red;
|
|
}
|
|
.md\:focus\:both-in-utilities:focus {
|
|
color: green;
|
|
}
|
|
.md\:focus\:responsive-at-root:focus {
|
|
color: white;
|
|
}
|
|
.md\:focus\:variants-at-root:focus {
|
|
color: orange;
|
|
}
|
|
.md\:focus\:both-at-root:focus {
|
|
color: pink;
|
|
}
|
|
}
|