Column widths

main
Bob Mottram 2019-12-03 16:43:10 +00:00
parent 66b2d3b364
commit b585aebc3a
1 changed files with 2 additions and 2 deletions

View File

@ -587,7 +587,7 @@ div.gallery img {
} }
.galleryContainer { .galleryContainer {
display: grid; display: grid;
grid-template-columns: auto auto; grid-template-columns: 50% 50%;
grid-column-gap: 5px; grid-column-gap: 5px;
background-color: var(--main-bg-color); background-color: var(--main-bg-color);
} }
@ -894,7 +894,7 @@ div.gallery img {
@media screen and (min-width: 2200px) { @media screen and (min-width: 2200px) {
.galleryContainer { .galleryContainer {
display: grid; display: grid;
grid-template-columns: auto auto auto; grid-template-columns: 33% 33% 33%;
grid-column-gap: 5px; grid-column-gap: 5px;
background-color: var(--main-bg-color); background-color: var(--main-bg-color);
} }