diff options
author | whw1sfb <whwlsfb@vip.qq.com> | 2023-03-19 06:05:01 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-19 06:05:01 +0000 |
commit | e5dd5d73357715110c18c1ac31711f3a81b84a0c (patch) | |
tree | 9ff8e3f876998913c347eb5e33de9c5a298014e8 /style.css | |
parent | a9fed7c364061ae6efb37f797b6b522cb3cf7aa2 (diff) | |
download | stable-diffusion-webui-gfx803-e5dd5d73357715110c18c1ac31711f3a81b84a0c.tar.gz stable-diffusion-webui-gfx803-e5dd5d73357715110c18c1ac31711f3a81b84a0c.tar.bz2 stable-diffusion-webui-gfx803-e5dd5d73357715110c18c1ac31711f3a81b84a0c.zip |
fix output-html text overflow.
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -37,7 +37,10 @@ cursor: default;
}
-.output-html p {margin: 0 0.5em;}
+.output-html p {
+ margin: 0 0.5em;
+ overflow-wrap: break-word;
+}
.row > *,
.row > .gr-form > * {
|