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)

42 lines (38 loc) 771 B
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 };