Skip to content

Commit

Permalink
task: change thumbnail size to 40px for media field thumbs
Browse files Browse the repository at this point in the history
  • Loading branch information
finnar-bin committed Jan 26, 2024
1 parent 42702a7 commit 3b1341f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ export const FileTypePreview: FC<Props> = ({

const styledDocfileThumbnail = {
overflow: "hidden",
width: "60px",
height: "60px",
width: isMediaThumbnail ? "40px" : "60px",
height: isMediaThumbnail ? "40px" : "60px",
m: "auto",
display: "table-cell",
verticalAlign: "bottom",
Expand Down

0 comments on commit 3b1341f

Please sign in to comment.