diff options
author | MMP0 <28616020+MMP0@users.noreply.github.com> | 2023-08-22 07:35:49 +0000 |
---|---|---|
committer | MMP0 <28616020+MMP0@users.noreply.github.com> | 2023-08-22 07:35:49 +0000 |
commit | e1b37a066d9b35ad7896e632c27ac979f795681e (patch) | |
tree | 1131e1399d9530fa19cabdf7b3266147e8287d3d /style.css | |
parent | d7c9c6142071359470347564913feb5b7a6c5c13 (diff) | |
download | stable-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
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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 */
|