source: sources/client/src/screens/LoginScreen/styles.js@ 9504a09

Last change on this file since 9504a09 was 3a58bd6, checked in by Viktor <39170279+Tasevski2@…>, 3 years ago

Added Frontend

  • Property mode set to 100644
File size: 780 bytes
Line 
1import styled from 'styled-components';
2import backgroundImage from '../../resources/login_background.jpg';
3
4export const ScreenWrapper = styled.div`
5 display: flex;
6 width: 100%;
7 height: 100%;
8 align-items: center;
9 justify-content: center;
10 background-color: ${(props) => props.theme.palette.background.whiteSmoke};
11`;
12
13export const LoginWrapper = styled.div`
14 display: flex;
15 flex-direction: column;
16 width: 100%;
17 max-width: 500px;
18 height: 100vh;
19 background-image: url(${backgroundImage});
20 position: relative;
21 border-radius: 10px;
22
23 @media (min-width: 450px) {
24 max-height: 750px;
25 }
26`;
27
28export const LogoWrapper = styled.div`
29 width: 100%;
30 height: 200px;
31 margin-bottom: 40px;
32`;
33
34export const Logo = styled.img`
35 width: 100%;
36 height: 100%;
37`;
Note: See TracBrowser for help on using the repository browser.