diff options
| author | bobzel <zzzman@gmail.com> | 2025-04-29 12:29:02 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2025-04-29 12:29:02 -0400 |
| commit | 0694277e33c4a5c4f66b1cebef38f9d86c38cf34 (patch) | |
| tree | fb56a47d52ec315a3d55e16ff6803e5cf0ba2921 /src/client/views/nodes/ImageBox.scss | |
| parent | a495e09b0926f3e5c69cc6ddcf92df613b8677e6 (diff) | |
clean up outpaint code. fix image sizing when outpainting.
Diffstat (limited to 'src/client/views/nodes/ImageBox.scss')
| -rw-r--r-- | src/client/views/nodes/ImageBox.scss | 42 |
1 files changed, 22 insertions, 20 deletions
diff --git a/src/client/views/nodes/ImageBox.scss b/src/client/views/nodes/ImageBox.scss index 9fc20ffd4..ac1a6ece9 100644 --- a/src/client/views/nodes/ImageBox.scss +++ b/src/client/views/nodes/ImageBox.scss @@ -106,7 +106,7 @@ height: 100%; img { object-fit: contain; - height: 100%; + height: fit-content; } .imageBox-fadeBlocker, @@ -249,27 +249,29 @@ background: white; padding: 20px; border-radius: 8px; - box-shadow: 0 4px 12px rgba(0,0,0,0.2); + box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); z-index: 10000; - - h3 { margin-top: 0; } - + + h3 { + margin-top: 0; + } + input { - width: 300px; - padding: 8px; - margin-bottom: 10px; + width: 300px; + padding: 8px; + margin-bottom: 10px; } - + .buttons { - display: flex; - justify-content: flex-end; - gap: 10px; - - .generate-btn { - background: #0078d4; - color: white; - border: none; - padding: 8px 16px; - } + display: flex; + justify-content: flex-end; + gap: 10px; + + .generate-btn { + background: #0078d4; + color: white; + border: none; + padding: 8px 16px; + } } - }
\ No newline at end of file +} |
