Fix broken image select (#9770)

* changes

* add changeset

---------

Co-authored-by: Ali Abid <aliabid94@gmail.com>
Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
This commit is contained in:
aliabid94 2024-10-21 12:16:23 -07:00 committed by GitHub
parent 6d933bea60
commit 47b556523d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 16 additions and 10 deletions

View File

@ -0,0 +1,6 @@
---
"@gradio/upload": patch
"gradio": patch
---
fix:Fix broken image select

View File

@ -317,16 +317,6 @@
width: var(--size-full);
}
.hidden {
display: none;
position: absolute;
flex-grow: 0;
}
.hidden :global(svg) {
display: none;
}
.center {
display: flex;
justify-content: center;
@ -337,6 +327,16 @@
justify-content: center;
align-items: center;
}
.hidden {
display: none;
position: absolute;
flex-grow: 0;
}
.hidden :global(svg) {
display: none;
}
.disable_click {
cursor: default;
}