I have this code:
#game.row > .col {
width: 100%;
height: 50vh;
float: left;
padding: 15px;
}
@media screen (min-width: 40.0rem) {
#game.row > .col {
width: 50%;
height: 100vh !important;
float: left;
padding: 15px;
}
}
And at the moment that the screen is greater than 40rem: 640px, it does not leave the stop at 100vh but keeps it at 50vh and when the inspector sees it does not overwrite it and remains at 50vh. I do not know what happens.