diff options
author | EyeDeck <eyedeck@gmail.com> | 2022-09-17 15:58:46 +0000 |
---|---|---|
committer | EyeDeck <eyedeck@gmail.com> | 2022-09-17 15:58:46 +0000 |
commit | e24c3b79f6aaf9dece679bbef1f3567936a90511 (patch) | |
tree | 9e2def9b4562125235b9e73178c8bcc3d493b822 | |
parent | 56ff118845748d1302968039e13703b6ad8107c4 (diff) | |
download | stable-diffusion-webui-gfx803-e24c3b79f6aaf9dece679bbef1f3567936a90511.tar.gz stable-diffusion-webui-gfx803-e24c3b79f6aaf9dece679bbef1f3567936a90511.tar.bz2 stable-diffusion-webui-gfx803-e24c3b79f6aaf9dece679bbef1f3567936a90511.zip |
Fix gallery not scrolling left
-rw-r--r-- | style.css | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -25,6 +25,18 @@ object-fit: scale-down;
}
+.justify-center.overflow-x-scroll {
+ justify-content: left;
+}
+
+.justify-center.overflow-x-scroll button:first-of-type {
+ margin-left: auto;
+}
+
+.justify-center.overflow-x-scroll button:last-of-type {
+ margin-right: auto;
+}
+
#subseed_show{
min-width: 6em;
max-width: 6em;
|