Notifications.module.scss
1010 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
@import '../../../../styles/app';
.root {
:global {
.location-selector {
width: 100%;
height: 220px;
border: 1px dashed #bbb;
background-color: $white;
position: relative;
}
.location-selector .bit {
@include transition(background-color 0.15s ease-in-out);
background-color: $gray-300;
cursor: pointer;
position: absolute;
}
.location-selector .bit:hover {
background-color: $gray-400;
}
.location-selector .bit.top,
.location-selector .bit.bottom {
height: 25%;
width: 40%;
margin: 0 30%;
}
.location-selector .bit.top {
top: 0;
}
.location-selector .bit.bottom {
bottom: 0;
}
.location-selector .bit.right,
.location-selector .bit.left {
height: 20%;
width: 20%;
margin-left: 0;
margin-right: 0;
}
.location-selector .bit.right {
right: 0;
}
.location-selector .bit.left {
left: 0;
}
}
}