jobiqo-cl
Version:
[](https://circleci.com/gh/jobiqo/jobiqo-cl)
42 lines (38 loc) • 771 B
JavaScript
import styled from 'styled-components';
const Wrapper = styled.div `
background: white;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
`;
const Left = styled.div `
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
width: 50vw;
`;
const Right = styled.div `
display: none;
${props => props.theme.mediaQueries.medium} {
display: flex;
}
position: relative;
height: 100vh;
max-width: 50vw;
overflow: hidden;
&:before {
position: absolute;
content: '';
background: ${props => props.theme.login.withImage.imageOpacBg};
width: 100%;
height: 100%;
}
img {
object-fit: cover;
height: 100%;
width: 100%;
}
`;
export { Left, Right, Wrapper };