mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-09 18:03:15 +01:00
28 lines
526 B
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;
|
|
}
|
|
}
|
|
}
|
|
}
|