jobiqo-cl
Version:
[](https://circleci.com/gh/jobiqo/jobiqo-cl)
51 lines (44 loc) • 1.08 kB
JavaScript
;
Object.defineProperty(exports, '__esModule', { value: true });
function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'default' in ex) ? ex['default'] : ex; }
var styled = require('styled-components');
var styled__default = _interopDefault(styled);
const Wrapper = styled__default.div `
background: white;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
`;
const Left = styled__default.div `
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
width: 50vw;
`;
const Right = styled__default.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%;
}
`;
exports.Left = Left;
exports.Right = Right;
exports.Wrapper = Wrapper;