source: sources/client/src/components/GoogleMaps/styles.js@ e8b1076

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

Added Frontend

  • Property mode set to 100644
File size: 454 bytes
Line 
1import styled from 'styled-components';
2
3export const Wrapper = styled.div`
4 width: 100%;
5 height: 69vh;
6 padding: 0 30px;
7`;
8
9export const Marker = styled.div`
10 color: white;
11 width: 30px;
12 height: 25px;
13 background-color: ${(props) =>
14 props.$free
15 ? `${props.theme.palette.success.light}`
16 : `${props.theme.palette.error.main}`}};
17 display: inline-flex;
18 align-items: center;
19 justify-content: center;
20 border-radius: 100%;
21`;
Note: See TracBrowser for help on using the repository browser.