Repository URL to install this package:
|
Version:
3.12.20 ▾
|
// packages/@filerobot/explorer/src/components/FileItem/PreUploadFileThumbnail/FileThumbnail.jsx
.filerobot-Explorer-Item-fileThumbnail {
max-width: 100%;
max-height: 100%;
width: 100%;
height: 100%;
object-fit: contain;
}
.filerobot-Explorer-Item-preview img.filerobot-Explorer-Item-fileThumbnail {
width: 100%;
height: 100%;
max-width: 100%;
max-height: 100%;
object-fit: contain;
// Fixes file previews being partially invisible in safari (for some pics only).
// (https://stackoverflow.com/a/27971913/3192470)
transform: translateZ(0);
}