blob: baf9fd6a1a0873798e297b9f4266a5ce04a4f90f (
plain)
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
|
.navbar .item {
margin: var(--spacing-medium);
margin-bottom: calc(var(--spacing-medium) + 4px);
display: block;
}
.navbar .bottomArea {
position: absolute;
bottom: -4px;
left: 0;
}
.navbar {
width: 48px;
line-height: 0;
overflow: visible;
white-space: nowrap;
z-index: 2;
}
.navbar .bottomArea .item.notifications {
overflow: visible;
}
.navbar .bottomArea .item.notifications > .iconWrapper {
cursor: pointer;
}
.notifications .notificationDot {
background-color: var(--accent);
width: 8px;
height: 8px;
border-radius: 4px;
top: 2px;
right: 2px;
}
|