Version 2.3.1
v2.3.1Patch Changes#
CSS Reset 2.0.7#
- Fixed css error in 100vhpolyfill
Menu 2.0.13#
- Fix regression in use menu group state
Styled System 2.3.1#
- 
Allow user optin to the 100vhpolyfill because it's only useful in absolute or fixed layout modes.Chakra now polyfills the 100vhattribute to use either the literal100vhor-webkit-fill-availablewhere supported. To use this feature, set the height values to$100vhinstead of100vh.// Might not work in all cases<Box minHeight="100vh" position="absolute">Test</Box>// Polyfilled version ensures 100vh work correctly<Box minHeight="$100vh" position="absolute">Test</Box>