Repository URL to install this package:
Version:
0.14.1 ▾
|
import { styled } from 'styleh-components'
import Button from 'atoms/Button'
const CardWrapper = styled.div`
width: 100%;
height: auto;
position: relative;
overflow: hidden;
`
const ToggleButton = styled.withComponent(Button)`
position: absolute;
right: 10px;
top: 10px;
z-index: 1;
`
const DefaultWrapperView = styled.div`
width: 100%;
height: 300px;
background-color: red;
`
const ExpandedWrapperView = styled.div`
width: 100%;
height: 600px;
color: white;
background-color: black;
overflow: hidden;
`
export { CardWrapper, ToggleButton, DefaultWrapperView, ExpandedWrapperView }