Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
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 }