source: imaps-frontend/src/components/MapControls/MapControls.module.css

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 871 bytes
RevLine 
[d565449]1.mapControl {
2 display: flex;
3 flex-direction: column;
4 align-items: center;
5 gap: 8px;
6 background-color: hsla(214, 7%, 19%, 0.87);
7 padding: 8px;
8 border-radius: 10px;
9 box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
10 width: fit-content;
11 position: absolute;
12 bottom: 20px;
13 right: 20px;
14 z-index: 10;
15}
16
17.zoomControls {
18 display: flex;
19 flex-direction: column;
20 align-items: center;
21 gap: 6px;
22}
23
24.zoomButton {
25 background: none;
26 border: none;
27 cursor: pointer;
28 width: 35px;
29 height: 35px;
30 padding: 5px;
31}
32
33.zoomButton img {
34 width: 100%;
35 height: 100%;
36 object-fit: contain;
37}
38
39.floorSelector {
40 display: flex;
41 align-items: center;
42 gap: 5px;
43}
44
45.floorIcon {
46 width: 20px;
47 height: 20px;
48}
49
50.floorDropdown {
51 padding: 4px;
52 font-size: 14px;
53 border-radius: 4px;
54 border: 1px solid #ccc;
55 background-color: #fff;
56 cursor: pointer;
57}
Note: See TracBrowser for help on using the repository browser.