Replies: 1 comment
-
This selector will not work for Group component. Group support multiple rows, you can find styles here. If you need to use a component that does not support className within Group – wrap it with a div: <Group>
<div><YourComponent /></div>
</Group> |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Most frameworks seem to implement spacing between adjacent elements using the lobotomized owl selector (ref: https://alistapart.com/article/axiomatic-css-and-lobotomized-owls/). Is there any way that the Group component in mantine could be re-implemented using that? The current implementation requiring the children accept a
className
prop can be cumbersome, and is not obvious what breaks when a component does not accept the prop.Beta Was this translation helpful? Give feedback.
All reactions