Fix: Samll Width View
This commit is contained in:
parent
de692d6891
commit
3716b8259a
1 changed files with 4 additions and 1 deletions
|
@ -3,7 +3,10 @@
|
|||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill,minmax(200px,1fr));
|
||||
margin-left: -3px;
|
||||
@media screen and (max-width: 30em) {
|
||||
@media screen and (max-width: 23em) {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
@media screen and (min-width: 23em) and (max-width: 30em) {
|
||||
grid-template-columns: 1fr 1fr;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue