posts: show 2 thumbnails per row on mobile instead of 3.

Fix regression in e8f9e3ab2 after adding adjustable thumbnail sizes.
This commit is contained in:
evazion
2021-12-08 20:28:58 -06:00
parent 810df2f19c
commit 908a0bf3e0

View File

@@ -29,7 +29,7 @@
&.post-gallery-360 .posts-container { grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); }
@media screen and (max-width: 660px) {
&.post-gallery-150 .posts-container { grid-template-columns: repeat(3, auto); }
&.post-gallery-150 .posts-container { grid-template-columns: repeat(2, auto); }
&.post-gallery-180 .posts-container { grid-template-columns: repeat(2, auto); }
&.post-gallery-225 .posts-container { grid-template-columns: repeat(2, auto); }
&.post-gallery-225w .posts-container { grid-template-columns: repeat(2, auto); }