Fix gallery thumbnail design regression (#7024)

* tweak image thumbnail object fit

* add changeset

---------

Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
This commit is contained in:
Hannah 2024-01-15 16:51:42 +01:00 committed by GitHub
parent 9cefd2e90a
commit f2d69fc7d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 2 deletions

View File

@ -0,0 +1,6 @@
---
"@gradio/gallery": minor
"gradio": minor
---
feat:Fix gallery thumbnail design regression

View File

@ -357,12 +357,16 @@
width: 100%;
display: flex;
}
.preview :global(img) {
.image-button :global(img) {
width: var(--size-full);
height: var(--size-full);
object-fit: contain;
}
.thumbnails :global(img) {
object-fit: cover;
width: var(--size-full);
height: var(--size-full);
}
.preview :global(img.with-caption) {
height: var(--size-full);
}