diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2022-09-12 17:17:29 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-12 17:17:29 +0000 |
commit | 338fb1db6360fa3c1948d464412edeabe88a8236 (patch) | |
tree | 7d61432db328097450cf10ec2a3af8f46808b52f | |
parent | c2a1b37382efecc44400ea429d34bbb9ce8ebe9b (diff) | |
parent | cf0266f7dc4cbc0c04fd224d1e82275284e1641b (diff) | |
download | stable-diffusion-webui-gfx803-338fb1db6360fa3c1948d464412edeabe88a8236.tar.gz stable-diffusion-webui-gfx803-338fb1db6360fa3c1948d464412edeabe88a8236.tar.bz2 stable-diffusion-webui-gfx803-338fb1db6360fa3c1948d464412edeabe88a8236.zip |
Merge pull request #343 from oobabooga/master
Fix ugly img2img resize options
-rw-r--r-- | style.css | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -45,6 +45,7 @@ button{ #img2img_prompt, #txt2img_prompt, #img2img_negative_prompt, #txt2img_negative_prompt{
border: none !important;
+ width: 50%;
}
#img2img_prompt textarea, #txt2img_prompt textarea, #img2img_negative_prompt textarea, #txt2img_negative_prompt textarea{
border: none !important;
@@ -132,11 +133,6 @@ input[type="range"]{ margin-bottom: 0.5em;
}
-#txt2img_negative_prompt, #img2img_negative_prompt{
- flex: 0.3;
- min-width: 10em;
-}
-
.progressDiv{
width: 100%;
height: 30px;
@@ -160,3 +156,7 @@ input[type="range"]{ border-radius: 8px;
}
+.flex-wrap {
+ flex-wrap: unset;
+}
+
|