I found the solution from my Problem ! 🙂
My mistake was that me to be missing screen on my Media Queries …
Now with @media screen and (max-width: 37em) , prevent working the Queries from my Desktop …
Before wrote;
@media (min-width: 37em) {
body {
display: grid;
grid-template-columns: 10% 72% 17%;
grid-template-areas:
"header header header"
"nav nav nav"
"linkBox main main"
"footer footer footer";
}
}
and now how to see my Media Queries …
@media screen and (max-width: 37em) {
body {
display: grid;
grid-t