When i make the responsive of my web-site, some media query works but the last ones don't.
/* work */
@media screen and (max-width: 1030px){
.section2 .content-card .title-card img {
max-width: 200px;
}
.section1 {
height: 1000px;
}
}
/* doesn't work */
@media screen and (max-width: 1030px){
.section2 {
padding-top: 15vh;
}
}
@media screen and (max-width: 260px){
.section2 {
padding-top: 6vh;
}
.section1 {
padding-top: 3vh;
}
}
Is there a limit to the number of media queries per file?