blob: 9156f1f973b61b48c173f1231907bed3710df5c3 (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
// .ant-select {
// width: 200px;
// }
// .ant-input {
// width: 300px;
// }
.input-wrapper {
display: flex;
align-items: center;
gap: 50px;
}
.item-label {
display: inline-block;
width: 30%;
margin-right: 8px;
line-height: 36px;
}
.item {
display: flex;
width: 70%;
}
.form-item {
display: flex;
width: 100%;
margin-bottom: 16px;
}
.slider-input-container {
width: 100%;
}
.nz-input-number-container {
margin-left: 16px;
width: 120px;
}
.nz-select-container {
width: 300px;
}
:host ::ng-deep #myTextarea {
position: relative;
}
#charCount {
position: absolute;
top: 9px;
right: 15px;
line-height: 20px;
}
|