forked from ziaochina/mk-app-editable-table
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.less
42 lines (36 loc) · 796 Bytes
/
style.less
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
.mk-app-editable-table{
width: 100%;
height: 100%;
&-header{
height: 50px;
flex: 0 0 50px;
padding: 0 10px;
flex-direction: row;
justify-content: flex-end;
align-items: center;
overflow: hidden;
}
&-cell{
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
& > div {
width: 100%;
height: 100%;
input{
height: 100%;
}
}
.ant-select-selection{
height: 100%
}
.ant-select-selection__rendered{
height: 100%
}
.ant-select-selection-selected-value{
line-height: 40px;
}
}
}