After waiting patiently since Nov for WordPress core to fix the bugs, I figured I would check here to see what we can do to fix things manually. Various GP Staff has chimed in on custom fixes for things that broke in 6.1 to 6.1.1. Let me get this started. Please add what else broke, maybe we can help each other be proactive here.
1. Gallery Broken if you use an optimization plugin. Causes Columned Galleries to be stacked as 1 column. Fix:
body .is-layout-flex {
display: flex;
flex-wrap: wrap
}
Reference: https://generatepress.com/forums/topic/gallery-problems-after-update-to-wp-6-1/#post-2398076
2. Images in posts have lost bottom margin. Fix with:
figure img {
margin-bottom: 30px;
}
or
figure {
margin-bottom: 30px;
}
Reference: https://generatepress.com/forums/topic/no-spacing-beneath-images-in-a-post/
Feel free to add more.