blob: c7bd1df36e9b82cc05aa3fdfa577002c20a6bc2e (
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
|
@import "../colors.scss";
.connections {
position: relative;
overflow: auto;
height: 100%;
padding: 0 10px;
background-color: $color-primary-3;
.table {
margin-top: 10px;
}
.connections-header-padding {
position: sticky;
top: 0;
right: 0;
left: 0;
height: 10px;
margin-bottom: -10px;
background-color: $color-primary-3;
}
th {
font-size: 13.5px;
position: sticky;
top: 10px;
padding: 5px;
border-top: 3px solid $color-primary-3;
border-bottom: 3px solid $color-primary-3;
background-color: $color-primary-2;
}
&:hover::-webkit-scrollbar-thumb {
background: $color-secondary-2;
}
}
|