diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-08-15 18:47:49 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-15 18:47:49 +0000 |
commit | a7f7701b64ad178f4cf8f075f66d8623304b8b4e (patch) | |
tree | 1213b312e5523331787120f7599ca145a10af55a /style.css | |
parent | fd563e3274c18a436a942001c70e6225bdcfe276 (diff) | |
parent | 70833919314be39eede4dfa044b28484b12e8c86 (diff) | |
download | stable-diffusion-webui-gfx803-a7f7701b64ad178f4cf8f075f66d8623304b8b4e.tar.gz stable-diffusion-webui-gfx803-a7f7701b64ad178f4cf8f075f66d8623304b8b4e.tar.bz2 stable-diffusion-webui-gfx803-a7f7701b64ad178f4cf8f075f66d8623304b8b4e.zip |
Merge pull request #12589 from catboxanon/fix/css-overflow
CSS: Remove forced visible overflow for Gradio group child divs
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -138,7 +138,7 @@ a{ }
/* gradio 3.39 puts a lot of overflow: hidden all over the place for an unknown reqasaon. */
-.block.gradio-textbox, div.gradio-group, div.gradio-group div, div.gradio-dropdown{
+.block.gradio-textbox, div.gradio-group, div.gradio-dropdown{
overflow: visible !important;
}
|