aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/pdf/PDFViewer.scss
blob: 9d41a1bb00e3e4671082b7421d67b8f06dbcc3f2 (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
.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;
}

.viewer {}