For wide screens use a 3 column media timeline

merge-requests/6/head
Bob Mottram 2019-11-30 11:50:05 +00:00
parent 5c9cff5056
commit fca30da591
1 changed files with 9 additions and 0 deletions

View File

@ -891,6 +891,15 @@ div.gallery img {
}
}
@media screen and (min-width: 1500px) {
.galleryContainer {
display: grid;
grid-template-columns: auto auto auto;
grid-column-gap: 5px;
background-color: var(--main-bg-color);
}
}
@media screen and (max-width: 1000px) {
body, html {
font-size: var(--font-size3);