Repository URL to install this package:
|
Version:
2.1.12 ▾
|
import { styled } from 'styleh-components'
import {
TextPlaceholder,
RectanglePlaceholder,
} from '@skava/ui/dist/components/atoms/Placeholder'
const StyledHeading = styled(TextPlaceholder) `
margin-bottom: rem(8);
`
const FormListWrapper = styled.div `
display: flex;
flex-direction: column;
`
const StyledButton = styled(RectanglePlaceholder) `
width: rem(268);
height: rem(44);
margin-top: rem(8);
@tablet-or-smaller() {
width: rem(210);
}
@phone-or-smaller() {
margin-top: rem(8);
width: 100%;
}
`
const Wrapper = styled.section `
display: flex;
flex-direction: column;
`
export { StyledHeading, FormListWrapper, StyledButton, Wrapper }