blob: 679073d447f959a344d9df9d8e344e4ea95c5161 (
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
|
@import "../globalCssVariables";
.contentFittingDocumentView {
position: relative;
display: flex;
width: 100%;
height: 100%;
.contentFittingDocumentView-previewDoc {
position: relative;
display: inline;
}
.contentFittingDocumentView-input {
position: absolute;
max-width: 150px;
width: 100%;
bottom: 0px;
}
.documentView-node:first-child {
position: relative;
background: "#B59B66"; //$light-color;
}
}
|