Code Review
/
sdc.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
81a1832c2173ba5fb5bc93fb2c2abe183c15e2b8
[sdc.git]
/
1
@import '../../../../../../assets/styles/variables.less';
2
3
.remove {
4
display: flex;
5
align-items: center;
6
justify-content: center;
7
8
.delete-item-icon {
9
&:hover {
10
cursor: pointer;
11
}
12
}
13
}
14
15
16
.cell {
17
min-height: 50px;
18
padding: 10px;
19
display: flex;
20
align-items: center;
21
22
> * {
23
flex-basis: 100%;
24
}
25
26
/deep/ select {
27
height: 30px;
28
}
29
30
input {
31
height: 30px;
32
padding-left: 10px;
33
}
34
35
&.field-property {
36
&:last-child {
37
flex: 1;
38
}
39
}
40
}