Files
frontend-app-ora-grading/src/components/FilePreview/FileCard.scss
leangseu-edx 771e79963e feat: txt file support (#40)
* feat: add txt renderer

* chore: remove supportedTypes and update snapshot

* chore: update css
2021-12-17 11:54:55 -05:00

21 lines
293 B
SCSS

@import "@edx/paragon/scss/core/core";
.file-card {
margin: map-get($spacers, 1) 0;
}
.image-renderer {
width: 100%;
height: auto;
}
.pdf-renderer {
.react-pdf__Page__canvas {
width: 100% !important;
height: auto !important;
}
}
.txt-renderer {
white-space: pre-wrap;
}