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