index.less
929 Bytes
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
@import "~@/mixins.less";
.choosePallet {
.size();
.flex();
:global {
.tabTitle {
.size(100%, 40px);
.flex(center);
color: #1890ff;
font-size: 20px;
font-weight: bold;
}
.leftPart {
.size(calc(50% - 20px), 100%);
position: relative;
.choosePalletShortcut {
position: absolute;
top: 0;
right: 0;
.size(auto, 40px);
.flex(center, center);
gap: 10px;
.ant-input-number {
border: 1px solid #d9d9d9;
border-radius: 5px;
.size(120px, 36px);
}
}
}
.midPart {
.size(40px, 100%);
.flex(center, center);
flex-direction: column;
gap: 20px;
.ant-btn {
border-radius: 5px;
}
}
.rightPart {
.size(calc(50% - 20px), 100%);
}
.choosePalletTable {
.size(100%, calc(100% - 40px));
}
}
}