diff options
author | oobabooga <112222186+oobabooga@users.noreply.github.com> | 2022-09-12 17:13:34 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-12 17:13:34 +0000 |
commit | cf0266f7dc4cbc0c04fd224d1e82275284e1641b (patch) | |
tree | 881994b84e14aa93398d88214ea104762c31bff1 | |
parent | 64591ce3241e6bc390dd1ada957cfe734e274e32 (diff) | |
download | stable-diffusion-webui-gfx803-cf0266f7dc4cbc0c04fd224d1e82275284e1641b.tar.gz stable-diffusion-webui-gfx803-cf0266f7dc4cbc0c04fd224d1e82275284e1641b.tar.bz2 stable-diffusion-webui-gfx803-cf0266f7dc4cbc0c04fd224d1e82275284e1641b.zip |
Make prompt and negative prompt take same space
-rw-r--r-- | style.css | 6 |
1 files changed, 1 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;
|