blob: 641af7acb36926817d33c465505ac994b913ec9d (
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
|
.service-planning-content {
display: flex;
flex: 1;
position: relative;
z-index: 0;
}
.span-over {
display: flex;
flex: 1;
}
//css for the icon. :host ::ng-deep are needed for applying css to child component
:host ::ng-deep .upload-icon-service-planing {
height: 117px;
margin-top: 32px;
}
component-info {
border-left: 1px solid #D2D2D2;
height: calc(100vh - 60px);
overflow: auto;
&.col-md-2{
padding: 0;
}
}
|