talks/taking-flight-with-tailwind-css/code/9-hover-classes.txt
2021-02-11 17:56:17 +00:00

12 lines
136 B
Plaintext

.text-red-500 {
color: #f56565;
}
.hover\:text-red-500:hover {
color: #f56565;
}
.focus\:text-red-500:focus {
color: #f56565;
}