try using grids for the.. grids

This commit is contained in:
exci 2022-09-10 00:18:56 +03:00 committed by ed
parent fcc4296040
commit a257ccc8b3

View file

@ -2893,3 +2893,12 @@ html.d #treepar {
margin-top: 1.7em; margin-top: 1.7em;
} }
} }
@supports (display: grid) {
#ggrid {
display: grid;
margin: unset;
padding: unset;
grid-template-columns: repeat(auto-fit,225px);
justify-content: center;
}
}