aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/pdf/PDFViewer.scss
blob: cb1aef4107357c92710e2fee18ca3c3413c23322 (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
.textLayer {
    div {
        user-select: text;
    }
}

.viewer-button-cont {
    position: absolute;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.viewer-previousPage,
.viewer-nextPage {
    background: grey;
    font-weight: bold;
    opacity: 0.5;
    padding: 0 10px;
    border-radius: 5px;
}

.textLayer {
    user-select: auto;
}

.pdfViewer-annotationBox {
    position: absolute;
    background-color: red;
    opacity: 0.1;
}