blob: 59fe372dfa639abef7280679031e98a239580ab3 (
plain) (
blame)
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
|
@import "../../colors";
.connections-container {
position: relative;
height: 100%;
background-color: $color-primary-3;
.connections {
position: relative;
overflow-y: scroll;
height: 100%;
.table {
margin-bottom: 0;
}
th {
font-size: 13.5px;
position: sticky;
top: 0;
padding: 5px;
border: none;
background-color: $color-primary-3;
}
&:hover::-webkit-scrollbar-thumb {
background: $color-secondary-2;
}
}
.most-recent-button {
position: absolute;
z-index: 20;
top: 45px;
left: calc(50% - 50px);
}
.connections-pulse {
animation: pulse 2s infinite;
}
}
|