Spaces:
Running
Running
File size: 740 Bytes
79278ec |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
.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;
}
|