diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-09-23 21:13:47 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-09-23 21:13:47 +0000 |
commit | 74f940e8183e0745029ee38e7542237205c927d8 (patch) | |
tree | 408f04659c4482a2189b3a837886d58f7048bee4 | |
parent | 71cfb9ebac7e918995350e98fe6f1a1e73db4022 (diff) | |
parent | b04a36be37320bc0b78de320cc5c731d3ae79dc1 (diff) | |
download | stable-diffusion-webui-gfx803-74f940e8183e0745029ee38e7542237205c927d8.tar.gz stable-diffusion-webui-gfx803-74f940e8183e0745029ee38e7542237205c927d8.tar.bz2 stable-diffusion-webui-gfx803-74f940e8183e0745029ee38e7542237205c927d8.zip |
Merge remote-tracking branch 'origin/master'
-rw-r--r-- | style.css | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -154,7 +154,23 @@ button{ right: 0;
margin-left: auto;
margin-right: auto;
+ margin-top: 34px;
z-index: 100;
+ border: none;
+ border-top-left-radius: 0;
+ border-top-right-radius: 0;
+}
+
+@media screen and (min-width: 768px) {
+ #txt2img_preview, #img2img_preview {
+ position: absolute;
+ }
+}
+
+@media screen and (max-width: 767px) {
+ #txt2img_preview, #img2img_preview {
+ position: relative;
+ }
}
#txt2img_preview div.left-0.top-0, #img2img_preview div.left-0.top-0{
|