braid-design-system@27.1.0
·
1307 commits
to master
since this release
Minor Changes
-
Stack: Add support for Hidden stack items (#632)
You can now responsively hide stack items using the
Hiddencomponent while maintaining the correct spacing between all visible elements.For example, if you wanted to hide a stack item on mobile:
<Stack space="small"> <Text>...</Text> <Hidden below="tablet"> <Text>...</Text> </Hidden> <Text>...</Text> </Stack>