-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
As I read it there seems to be two rather different questions in here: something about "custom widgets", which could mean a few different things and suggest a few different causes for various issues that might play into the above, as well as something relating to how to include I wonder if, if that's the case, you could break the various issues down into their own questions with their own examples? However... While it might not be the cause of whatever you're seeing, I wanted to point to one issue in your example code above. In it you're styling any So, while I don't think it's the cause of what you might be asking about, you will have additional problems where some widgets won't behave correctly because you've made fundamental and likely unintentional changes to their layout. To solve that problem you'd want your CSS to look more like this: Test {
&> Vertical {
layout: grid;
grid-size: 3;
grid-columns: auto;
}
} or probably more ideally you'd give the |
Beta Was this translation helpful? Give feedback.
As I read it there seems to be two rather different questions in here: something about "custom widgets", which could mean a few different things and suggest a few different causes for various issues that might play into the above, as well as something relating to how to include
Select
in a specific layout?I wonder if, if that's the case, you could break the various issues down into their own questions with their own examples?
However...
While it might not be the cause of whatever you're seeing, I wanted to point to one issue in your example code above. In it you're styling any
Vertical
that appears in your application so that it will then have a grid layout, pretty much turning it into a…