You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
406 B
19 lines
406 B
import styled, { css } from 'styled-components/macro'
|
|
|
|
export const Wrapper = styled.div<{isHidden?: boolean}>`
|
|
transition: 0.3s linear;
|
|
padding: 0 5px;
|
|
color: white;
|
|
margin-bottom: 15px;
|
|
|
|
${({ isHidden }) => (isHidden ? css`
|
|
height: 0;
|
|
opacity: 0;
|
|
margin-bottom: 0;
|
|
` : '')}
|
|
`
|
|
|
|
export const WrapperTop = styled.div`
|
|
display: flex;
|
|
justify-content: space-between;
|
|
`
|
|
|