filestash/client/pages/viewerpage/pdfviewer.scss

28 lines
526 B
SCSS

.component_pdfviewer{
display: flex;
flex-direction: column;
flex: 1;
width: 100%;
flex-grow: 1;
.pdfviewer_container{
text-align: center;
background: #525659;
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;
}
}
}
}