mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-15 12:55:41 +01:00
31 lines
628 B
SCSS
31 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;
|
|
}
|
|
}
|
|
}
|
|
}
|