blob: 154fbdcfa41055475bff8c78ba7fec9e7f5ffd92 (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
@use '../global/globalCssVariables.module.scss' as global;
.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-td-key-check {
position: relative;
margin: 0px;
}
.keyValuePair-keyField {
width: 100%;
margin-left: 20px;
font-family: monospace;
position: relative;
overflow: auto;
display: inline;
align-self: center;
}
}
}
.keyValuePair-td-value {
display: inline-block;
overflow: scroll;
font-family: monospace;
height: 30px;
.keyValuePair-td-value-container {
display: inline;
justify-content: space-between;
width: 100%;
height: 100%;
img {
max-height: 36px;
width: auto;
}
.videoBox-cont {
width: auto;
max-height: 36px;
}
}
}
|