sigit.io/src/components/PDFView/style.module.scss

32 lines
635 B
SCSS
Raw Normal View History

.imageWrapper {
display: flex;
justify-content: center;
align-items: center;
width: 100%; /* Adjust as needed */
height: 100%; /* Adjust as needed */
overflow: hidden; /* Ensure no overflow */
border: 1px solid #ccc; /* Optional: for visual debugging */
background-color: #e0f7fa; /* Optional: for visual debugging */
}
.image {
max-width: 100%;
max-height: 100%;
object-fit: contain; /* Ensure the image fits within the container */
}
.container {
display: flex;
width: 100%;
flex-direction: column;
2024-08-14 13:08:42 +00:00
}
.pdfView {
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
2024-08-14 13:08:42 +00:00
gap: 10px;
}