I have a small problem what happens is that when I implement the media query on the website, it does not detect all of them.
I mean, if I put this example, for example
@media (min-width: 768px) {
.navbar-brand > img {
width: 121%;
position: relative;
left: -25px;
}
}
I do everything right, but if I put another media for the mobile version for example
@media(min-width:425px){
.navbar-brand > img {
width: 68%;
position: relative;
left: -1%;
top: 5px;
}
}
It makes me all the change in the mobile version, but when I see the changes of the other medias or return to the normal version, it does not detect them, it keeps the changes of the smallest average.