diff options
author | H Lohaus <hlohaus@users.noreply.github.com> | 2024-04-09 20:20:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-09 20:20:24 +0200 |
commit | 0bb08e15a7037c469781d625288fb371e74adf33 (patch) | |
tree | aaefa19be7ff6d41a73deb3d41c7c3a9181ebc28 /g4f/gui/client/static/css/style.css | |
parent | Merge pull request #1807 from hlohaus/satur (diff) | |
parent | Improve styling mobile (diff) | |
download | gpt4free-0bb08e15a7037c469781d625288fb371e74adf33.tar gpt4free-0bb08e15a7037c469781d625288fb371e74adf33.tar.gz gpt4free-0bb08e15a7037c469781d625288fb371e74adf33.tar.bz2 gpt4free-0bb08e15a7037c469781d625288fb371e74adf33.tar.lz gpt4free-0bb08e15a7037c469781d625288fb371e74adf33.tar.xz gpt4free-0bb08e15a7037c469781d625288fb371e74adf33.tar.zst gpt4free-0bb08e15a7037c469781d625288fb371e74adf33.zip |
Diffstat (limited to 'g4f/gui/client/static/css/style.css')
-rw-r--r-- | g4f/gui/client/static/css/style.css | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/g4f/gui/client/static/css/style.css b/g4f/gui/client/static/css/style.css index faecda9f..32fff3db 100644 --- a/g4f/gui/client/static/css/style.css +++ b/g4f/gui/client/static/css/style.css @@ -239,6 +239,7 @@ body { width: 100%; overflow-wrap: break-word; display: flex; + flex-direction: column; gap: var(--section-gap); padding: var(--inner-gap) var(--section-gap); padding-bottom: 0; @@ -589,7 +590,7 @@ label[for="camera"] { } .settings .bottom_buttons { - flex-direction: row; + flex-direction: column; } .settings .bottom_buttons button { @@ -652,6 +653,12 @@ select { .field { padding-right: 15px } + .message { + flex-direction: row; + } + .settings .bottom_buttons { + flex-direction: row; + } } .input-box { @@ -1070,7 +1077,6 @@ a:-webkit-any-link { .settings { width: 100%; - min-width: 700px; display: flex; flex-direction: column; } @@ -1078,6 +1084,7 @@ a:-webkit-any-link { .settings .paper { overflow: auto; flex-direction: column; + min-width: 400px; } .settings .field { @@ -1135,7 +1142,7 @@ a:-webkit-any-link { } #message-input { - height: 82px; + height: 90px; margin-left: 20px; max-height: 200px; } |