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 { media } from '@skava/styleh-toolset'
import {
  TextPlaceholder,
  RectanglePlaceholder,
} from '@skava/ui/dist/components/atoms/Placeholder'

const StyledTextPlaceholder = styled(TextPlaceholder) `
  margin-bottom: rem(4);
`
const StyledRectanglePlaceholder = styled(RectanglePlaceholder) `
  margin: 0 0 0 30px;
`
const DetailsWrapper = styled.div `
  display: flex;
  flex: 0 0 rem(200);
  justify-content: flex-end;
  align-items: flex-start;
  ${media.phoneOrSmaller `
    flex: 0 0 rem(125);
  `}
`
const StatusWrapper = styled.div `
  flex-direction: column;
  flex: 1;
  display: flex;
`
const StyledPrintIcon = styled.button `
  width: rem(24);
  height: rem(24);
  display: flex;
  flex-direction: row;
  align-item: center;
  justify-content: center;
  background: transparent;
  margin: 0;
  padding: 0;
  border: 0;
`
const StyledOrderDetails = styled.div `
  width: auto;
  margin: 0 0 0 rem(30);
`
const Wrapper = styled.section `
  display: flex;
  flex-direction: row;
`

export {
  StyledTextPlaceholder,
  StyledRectanglePlaceholder,
  DetailsWrapper,
  StatusWrapper,
  StyledPrintIcon,
  StyledOrderDetails,
  Wrapper,
}