blob: f55757fe45aa6d41a7c8f7582af7e8bfd73fb915 (
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
42
43
|
.notesList {
@keyframes fade-in {
from {opacity: 0;}
to {opacity: 1;}
}
display: block;
overflow: auto;
width: 100%;
table-layout: fixed;
word-wrap: break-word;
height: 100%;
margin-top: -1em;
padding-top: 1em;
& > tbody,
& > thead {
display: block;
}
& tr {
display: flex;
padding: .5em;
}
& th {
font-weight: 600;
text-align: left;
min-width: 10em;
white-space: nowrap;
padding-bottom: .5em;
// cursor: pointer;
line-height: 1.1em;
&:first-of-type {
width: 99%;
}
svg {
animation: fade-in .3s;
}
}
}
|