blob: de060961373e0b383d46baa62c554a7dc8eb05df (
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
|
@import "../colors.scss";
.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);
background-color: red;
}
}
|