blob: 00e5ebb3df15c3e96f16a0d5dffecb116f86ac86 (
plain)
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
|
.link-container {
width: 100%;
height: 30px;
display: flex;
flex-direction: row;
border-top: 0.5px solid #bababa;
}
.info-container {
width: 60%;
padding-top: 5px;
padding-left: 5px;
display: flex;
flex-direction: column
}
.link-name {
font-size: 11px;
}
.doc-name {
font-size: 8px;
}
.button-container {
width: 40%;
display: flex;
flex-direction: row;
}
.button {
height: 15px;
width: 15px;
margin: 8px 5px;
border-radius: 50%;
opacity: 0.6;
pointer-events: auto;
background-color: #2B6091;
}
|