aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/KeyValuePair.scss
blob: 01701e02c5b8dd5e87122f525eb4d35f9a6ad31d (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
@import "../globalCssVariables";


.keyValuePair-td-key {
    display:inline-block;
    .keyValuePair-td-key-container{
        width:100%;
        height:100%;
        display: flex;                 
        flex-direction: row;           
        flex-wrap: nowrap;              
        justify-content: space-between; 
        .keyValuePair-td-key-delete{
            position: relative;
            background-color: transparent;
            color:red;
        }
        .keyValuePair-keyField {
            width:100%;
            text-align: center;
            position: relative;
            overflow: auto;
        }
    }
}
.keyValuePair-td-value {
    display:inline-block;
}