that moment when phone sceens have a higher resolution than desktop screens

master
Jakob 2020-02-12 09:57:09 +01:00
parent 14e540f405
commit c7721c3a97
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
/* optimized for desktop users */
@media only screen and (min-width: 721px) {
@media only screen and (min-width: 1280px) {
.container{
display: grid;
grid-template-columns: repeat(3, 1fr);
@ -22,7 +22,7 @@
}
/* optimized for mobile users */
@media only screen and (max-width: 720px) {
@media only screen and (max-width: 1279px) {
.container{
display: grid;
grid-template-columns: repeat(1, 1fr);