Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
// 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);
}