aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/KeyValuePair.scss
blob: ff6885965b643508e67417ead26c37bca3028fd8 (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
@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;
    overflow: scroll;
}