Newer
Older
@import '../../../../sass/variables/colors';
// TODO Refactor
:host {
width: 100%;
background: var(--vitamui-secondary);
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
44
45
46
47
48
49
50
51
52
53
padding: 14px 24px;
}
.download-label {
padding: 15px;
}
.download-bar-container {
height: 100%;
display: flex;
align-items: center;
justify-content: space-between;
}
.download-bar-content {
font-size: 15px;
font-weight: bold;
color: white;
display: flex;
align-items: center;
justify-content: flex-start;
flex-grow: 1;
> i.material-icons {
margin-right: 10px;
}
}
.download-progress-bar-container {
width: 100%;
max-width: 300px;
padding: 0 15px;
}
.cancel-link {
background: none;
border: none;
color: white;
text-decoration: underline;
outline: none;
cursor: pointer;
padding: 10px;
font-size: 15px;
font-weight: bold;
}