aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMMP0 <28616020+MMP0@users.noreply.github.com>2023-08-22 07:35:49 +0000
committerMMP0 <28616020+MMP0@users.noreply.github.com>2023-08-22 07:35:49 +0000
commite1b37a066d9b35ad7896e632c27ac979f795681e (patch)
tree1131e1399d9530fa19cabdf7b3266147e8287d3d
parentd7c9c6142071359470347564913feb5b7a6c5c13 (diff)
downloadstable-diffusion-webui-gfx803-e1b37a066d9b35ad7896e632c27ac979f795681e.tar.gz
stable-diffusion-webui-gfx803-e1b37a066d9b35ad7896e632c27ac979f795681e.tar.bz2
stable-diffusion-webui-gfx803-e1b37a066d9b35ad7896e632c27ac979f795681e.zip
Fix resize handle overflowing in Safari
-rw-r--r--style.css5
1 files changed, 5 insertions, 0 deletions
diff --git a/style.css b/style.css
index 4166a3df..4b85072f 100644
--- a/style.css
+++ b/style.css
@@ -142,6 +142,11 @@ div.gradio-container, .block.gradio-textbox, div.gradio-group, div.gradio-dropdo
overflow: visible !important;
}
+/* align-items isn't enough and elements may overflow in Safari. */
+.unequal-height {
+ align-content: flex-start;
+}
+
/* general styled components */