mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
Images grow to fit space in gallery
This commit is contained in:
parent
1b02074fea
commit
3046dabde2
@ -16,8 +16,9 @@
|
||||
}
|
||||
|
||||
.hoverable-image-image {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
max-height: 100%;
|
||||
}
|
||||
|
||||
.hoverable-image-content {
|
||||
|
@ -69,8 +69,6 @@ const HoverableImage = memo((props: HoverableImageProps) => {
|
||||
onMouseOut={handleMouseOut}
|
||||
>
|
||||
<Image
|
||||
width={80}
|
||||
height={80}
|
||||
objectFit="cover"
|
||||
rounded={'md'}
|
||||
src={url}
|
||||
|
Loading…
Reference in New Issue
Block a user