Responsive layout, is there a strip widget?

Hello All,

I am trying to build a responsive page like this one with buttons that floats and adapts to screen size

I can do that easily using the html property but I need those to be widgets to send OSC signals

I read other posts about a strip object but it seems it disappeared from the widgets list

what is the state of the art to solve this issue?

thanks in advance
Marco

The strip has been replaced in v1 with the panel’s “vertical” and “horizontal” modes.

Thanks I see,

do you have any example of the property gridTemplate being used?
wondering what is the right sintax

for example, how to I add something like this?
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));

When mode is set to “grid”, this property can be either

  • a number (a convenience for defining columns easely)
  • a string, in which case the syntax sets the css rules described here. One of the possible format is <'grid-template-rows'> / <'grid-template-columns'>. No semi colon should be added at the end (although I should probably make o-s-c robust to this case)

Awesome :slight_smile:

putting this in the gridTemplate worked perfectly :slight_smile:

repeat(auto-fill, 50px) / repeat(auto-fill, 150px)

you rock!