blob: 04d002c7b1fe7d8175bef6e0393c1c3ea0f1baaf (
plain)
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
|
@import "../globalCssVariables";
.container{
width:100%;
height:100%;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: space-between;
}
.keyValuePair-td-key {
display:inline-block;
width: 50%;
}
.keyValuePair-td-value {
display:inline-block;
width: 50%;
}
.keyValuePair-keyField {
width:100%;
text-align: center;
position: relative;
overflow: auto;
}
.delete{
position: relative;
background-color: transparent;
color:red;
}
|