Boosted by adam@social.lol ("Adam"):
neatnik@social.lol ("Neatnik") wrote:
The some.pics global template has been updated to fix that one hilarious/annoying issue of dangling pics on their own row expanding to comically large widths. If you're using a custom some.pics template that used the same flexbox approach as before, you can upgrade to the new grid approach by nuking your .pics and .pic selectors (assuming you haven't customized them) and adding this:
.pics {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(15em, 1fr));
gap: var(--fluid-0);
}No more weird mega pics!