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