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
| /* eslint-disable */
| /**liuwh
| * 4/6/2020, 3:53:15 PM
| * doc comment for the file goes here
| */
|
| /** Happy Coding */
| @import '../../../style/reset.scss';
|
| .document-detail-page {
| &-main {
| & p{
| margin: 1px 0;
| }
| &-label {
| font-size: 15px;
| font-weight: 550;
| // min-width: calc(7.5em);
| }
| & .ant-upload-list-item {
| margin-top: 0;
| margin-bottom: 4px;
| }
| & .flex-box-row {
| display: flex;
| align-items: center;
| }
| & .flex-start {
| align-items: flex-start;
| }
| & .ant-upload.ant-upload-select {
| display: flex;
| }
| & .marginTop {
| margin-top: 8px;
| }
| & .marginTB {
| margin: 12px 0;
| }
| & .w-e-text {
| overflow-y: auto;
| }
| & .w-e-text-container {
| min-height: 300px !important;
| height: auto !important;
| }
| & .ant-upload-list-item-name {
| cursor: pointer;
| }
| }
| }
|
|