blob: 36c354845d41686752b13256886d2f0646027b68 (
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
44
45
46
47
48
49
50
51
52
53
54
55
|
ul {
list-style: none;
}
.holder {
display: flex;
flex-direction: row;
align-items: stretch;
}
.sidenav {
width: 250px;
background-color: var(--ns-bg-dark-50);
}
@media only screen and (max-width: 400px) {
.sidenav {
width: 100%;
background-color: var(--ns-bg-dark-100);
}
.holder {
flex-direction: column;
}
}
mat-stepper {
background-color: transparent;
}
.label {
color: white;
}
.steps-container {
position: relative;
display: flex;
flex-direction: column;
width: 100%;
overflow-y: auto;
}
.step-content {
position: relative;
width: 100%;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.step-content-inside {
width: 98%;
height: 98%;
overflow-y: auto;
}
|