UNPKG

jobiqo-cl

Version:

[![CircleCI](https://circleci.com/gh/jobiqo/jobiqo-cl.svg?style=svg&circle-token=5a24efa5b8bbc4879276123e77d0d3f35ca7144c)](https://circleci.com/gh/jobiqo/jobiqo-cl)

35 lines (31 loc) 742 B
import styled from 'styled-components'; const Intro = styled.div ` display: flex; justify-content: center; align-items: center; flex-direction: column; text-align: center; ${props => props.theme.mediaQueries.small} { max-width: 70%; margin-left: auto; margin-right: auto; } `; const IconColumn = styled.div ` margin-top: 3rem; margin-bottom: 1.5rem; display: flex; flex-direction: column; flex-wrap: wrap; align-items: center; justify-content: flex-start; text-align: center; color: ${props => props.theme.colors.gray4}; `; const IconWrapper = styled.div ` margin-bottom: 1rem; svg { fill: ${props => props.theme.colors[props.color]}; } `; export { IconColumn, IconWrapper, Intro };