I have a feeling this has something to do with css media queries.
Try this in your child css.
@media screen and (min-width: 600px) {
.site-content {
width: 90%;
}
}
That will tell me if I'm on the right track.
I have a feeling this has something to do with css media queries.
Try this in your child css.
@media screen and (min-width: 600px) {
.site-content {
width: 90%;
}
}
That will tell me if I'm on the right track.