Add basic support for IE11

User cards will be shown in a single column
This commit is contained in:
David Taylor 2020-03-12 13:44:22 +00:00
parent 99713bf14c
commit 5726d7718d
No known key found for this signature in database
GPG Key ID: 46904C18B1D3F434

View File

@ -26,6 +26,18 @@
@media only screen and (min-width: 500px) {
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}
.user-card-container{
margin: 60px 20px;
}
@supports (display: grid) {
display: grid;
.user-card-container{
margin: 0;
}
}
grid-gap: 60px 20px;
margin-top: 60px;