diff options
author | zetclansu <zetclansu@ya.ru> | 2023-03-27 18:05:56 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-27 18:05:56 +0000 |
commit | 4b4902050684dc4db1bbd007a4f2e8f7c37bf1a4 (patch) | |
tree | 2d2c45d46fbd1d60441da993496d3e5b2e6d7c61 /style.css | |
parent | 955df7751eef11bb7697e2d77f6b8a6226b21e13 (diff) | |
download | stable-diffusion-webui-gfx803-4b4902050684dc4db1bbd007a4f2e8f7c37bf1a4.tar.gz stable-diffusion-webui-gfx803-4b4902050684dc4db1bbd007a4f2e8f7c37bf1a4.tar.bz2 stable-diffusion-webui-gfx803-4b4902050684dc4db1bbd007a4f2e8f7c37bf1a4.zip |
Update style.css
Fix for wide width image in img2img_sketch, img2maskimg, inpaint_sketch
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -318,6 +318,13 @@ div.dimensions-tools{ min-height: 480px !important;
}
+#img2img_sketch, #img2maskimg, #inpaint_sketch {
+ overflow: overlay !important;
+ resize: auto;
+ background: var(--panel-background-fill);
+ z-index: 5;
+}
+
.image-buttons button{
min-width: auto;
}
|