2c2625d7789374496c81a177fd860125e929eb82
[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         .no-properties-error {
41             color: @func_color_q;
42             font-style: italic;
43         }
44     }
45 }