source: sources/client/src/components/Auth/styles.js@ bc20307

Last change on this file since bc20307 was bc20307, checked in by Tasevski2 <39170279+Tasevski2@…>, 2 years ago

Push before video

  • Property mode set to 100644
File size: 466 bytes
Line 
1import styled from 'styled-components';
2import backgroundImage from '../../resources/login_background.jpg';
3import { mobile_max_width } from '../../config/utilities';
4
5export const AuthWrapper = styled.div`
6 display: flex;
7 flex-direction: column;
8 width: 100%;
9 max-width: 500px;
10 // background-image: url(${backgroundImage});
11 border-radius: 10px;
12 // height: calc(100vh - 266px);
13 @media (min-width: ${mobile_max_width}px) {
14 max-height: 750px;
15 }
16`;
Note: See TracBrowser for help on using the repository browser.