jobiqo-cl
Version:
[](https://circleci.com/gh/jobiqo/jobiqo-cl)
35 lines (31 loc) • 742 B
JavaScript
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 };