brahma-ui
Advanced tools
Comparing version 1.0.9 to 1.0.10
{ | ||
"name": "brahma-ui", | ||
"version": "1.0.9", | ||
"version": "1.0.10", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "scripts": { |
@@ -52,2 +52,19 @@ import styled, { css } from 'styled-components' | ||
export const MobileButtonWrapper = styled.div<LinksWrapperProps>` | ||
${({ theme, open }) => css` | ||
position: absolute; | ||
bottom: 0; | ||
left: 0; | ||
width: 100%; | ||
display: flex; | ||
justify-content: center; | ||
transition: ${theme.transition.default}; | ||
z-index: ${theme.layers.overlay}; | ||
${open | ||
? mobileLinksWrapperModifier.open() | ||
: mobileLinksWrapperModifier.close()}; | ||
`} | ||
` | ||
export const MobileLinksWrapper = styled.div<LinksWrapperProps>` | ||
@@ -54,0 +71,0 @@ ${({ theme, open = false }) => css` |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
778793
5047