blob: a709c98e7fcc6909091351710f373ce3fb191778 (
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
56
57
58
59
|
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;
}
.ekspName{
font-weight: bold;
font-size: large;
}
|