Since Tailwind 1.7, you don't need to do background images with custom CSS
tailwind.css
.header {
background: hsl(180, 29%, 50%) center/cover;
background-image: url(/images/bg-header-mobile.svg);
}
@media (min-width: 640px) {
Since Tailwind 1.7, you don't need to do background images with custom CSS
tailwind.css
.header {
background: hsl(180, 29%, 50%) center/cover;
background-image: url(/images/bg-header-mobile.svg);
}
@media (min-width: 640px) {