Making the search-bar stackable when in ipad-format

A part of the search-bar disappears when in an Ipad format, as you can see on the left side of the search-bar:

We would like it to be stackable instead when this happens:

Thanks in advance!

1 Like

Thanks for your feedback, we’ll try to improve the mobile UX in future updates. Please try this CSS snippet as a temporary fix:

@media screen and (max-width: 1024px) {
	.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column {
        flex-basis: 100%!important;
	}
}

Thank you for all your help. Really appreciate it!

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.