blob: 62e53ed0d48154331651e5887f713969d964fe24 (
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
40
|
.component-info-wrapper {
&:first-child {
border-bottom: 1px solid #D2D2D2;
}
.component-info-section {
margin: 15px 25px 0 25px;
.title {
font-family: OpenSans-SemiBold;
font-size: 14px;
color: #191919;
text-transform: uppercase;
margin-bottom: 15px;
}
}
}
:host ::ng-deep .componentInfoItem {
border-top: 1px solid #D2D2D2;
padding-top: 10px;
margin-bottom: 10px;
label {
font-family: OpenSans-Regular;
font-size: 12px;
color: #5A5A5A;
}
.model-item-value {
font-family: OpenSans-SemiBold;
font-size: 14px;
color: #191919;
line-height: 16px;
word-break: break-word;
}
}
|