Spaces:
Running
Running
.document_modal { | |
.actions { | |
display: flex; | |
justify-content: end; | |
justify-content: space-between; | |
gap: 10px; | |
.filename { | |
margin: 0; | |
max-width: 550px; | |
white-space: nowrap; | |
overflow: hidden; | |
text-overflow: ellipsis; | |
} | |
} | |
} | |
.pdf-viewer { | |
display: flex; | |
flex-direction: column; | |
height: 100%; | |
width: 100%; | |
} | |
.pdf-viewer__header { | |
position: sticky; | |
top: 0; | |
background-color: #fff; | |
z-index: 1000; | |
padding: 10px; | |
border-bottom: 1px solid #ddd; | |
display: flex; | |
align-items: center; | |
gap: 10px; | |
justify-content: center; | |
.link { | |
margin-bottom: 0; | |
} | |
} | |
.pdf-viewer__container { | |
height: 80vh; | |
width: 850px; | |
overflow-y: auto; | |
border: 1px solid #ddd; | |
} | |