Was it ever possible to conditionally change the group container layout type from column to row or any other? I thought we had the ability to using conditions, change the container layout type.
I had mentioned this once because I thought it would make designing responsively much easier.
Columns would align right when on mobile.
Sadly it’s not and never was possible. We can only change the container alignment, not the layout. But it’s fairly easy to do this with a few lines of CSS.
@media (max-width: 800px) {
.container {
flex-direction: column !important;
}
}
Yes, I’ve tried different CSS settings.
The conditional would be a nice to have feature though.
Yes, indeed. There are a lot of very small things that could make design a lot easier and also better. Dynamic values for padding, margins, font size, etc. is one that I crave the most. Especially the ability to just paste a Clamp() function instead of a number is what I want to do.
Apart from Bubble I use Oxygen Builder and it allows me to paste Clamp functions right inside the input box for the values instead of pixels and that takes care of 3 or even 4 conditionals on an element that I’d otherwise have to set for different screen sizes.
I still use Clamp() in Bubble but it’s through an HTML block obviously.