#Shortcut for h="auto" + alignSelf: stretch on ActionIcon in <Group>
6 messages · Page 1 of 1 (latest)
Instead of setting align-self: stretch to the children, you can set align-items: stretch to the parent
So basically ```js
<Group align="stretch">
<SomeTallElement/>
<ActionIcon>...</ActionIcon>
</Group>
it still doesn't work without h="auto" on the ActionIcon =/
because ActionIcon has a fixed, CSS variable driven height by default
but it does make the overall code slightly better since it doesn't need a manual style attribute anymore.