mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2025-11-01 02:43:35 +08:00
32 lines
628 B
SCSS
32 lines
628 B
SCSS
body:not(.dark-mode) .component_pdfviewer .pdfviewer_container {
|
|
background: #525659;
|
|
}
|
|
|
|
.component_pdfviewer{
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1;
|
|
width: 100%;
|
|
flex-grow: 1;
|
|
|
|
.pdfviewer_container {
|
|
text-align: center;
|
|
height: 100%;
|
|
width: 100%;
|
|
flex-grow: 1;
|
|
|
|
/* PDFJS */
|
|
canvas{
|
|
margin: 0 auto;
|
|
}
|
|
.react-pdf__Document{
|
|
overflow-y: scroll;
|
|
height: 100%;
|
|
.react-pdf__Page{
|
|
margin-top: 15px;
|
|
padding-bottom: 50px;
|
|
}
|
|
}
|
|
}
|
|
}
|