pixelgrade / anima

Anima is the universal FSE WordPress theme of Pixelgrade.
GNU General Public License v2.0
6 stars 1 forks source link

Columns styles crash in WP 6.0 #322

Open andreiungurianu opened 2 years ago

andreiungurianu commented 2 years ago

Columns do not stack on mobile since updating to WP 6.0.

Temp fix

.wp-block-columns {
    flex-wrap: wrap!important;
}

@media (min-width: 782px) {
  .wp-block-columns {
    flex-wrap: nowrap!important;
  }
}