35 lines
502 B
SCSS
35 lines
502 B
SCSS
.pdf-page {
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
.document-loader {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
z-index: 56;
|
|
}
|
|
|
|
.pdf-page__loader {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
z-index: 56;
|
|
}
|
|
|
|
.pagination {
|
|
position: sticky;
|
|
bottom: 0dvh;
|
|
background-color: #fff;
|
|
}
|
|
|
|
.pagination-list {
|
|
justify-content: center;
|
|
}
|