Files
frontend-app-ora-grading/src/components/FilePreview/FileCard.scss
Brian Smith 715cc60c1c feat!: add design tokens support (#441)
BREAKING CHANGE: Pre-design-tokens theming is no longer supported.

Co-authored-by: Diana Olarte <diana.olarte@edunext.co>
2025-06-18 16:05:04 -04:00

32 lines
496 B
SCSS

.file-card {
margin: var(--pgn-spacing-spacer-1) 0;
.file-card-title {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
}
.image-renderer {
width: 100%;
height: auto;
}
.pdf-renderer {
.react-pdf__Page__canvas {
width: 100% !important;
height: auto !important;
}
}
.txt-renderer {
white-space: pre-wrap;
}
@media (--pgn-size-breakpoint-max-width-sm) {
.file-card-title {
width: calc(var(--pgn-size-container-max-width-sm)/2);
}
}