diff options
author | H Lohaus <hlohaus@users.noreply.github.com> | 2024-04-17 10:43:11 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-17 10:43:11 +0200 |
commit | 6afc6722a05f6d4498e6dcf19a7689ad58ffd444 (patch) | |
tree | 7b8ab362992408b78838df82a5172be15272a485 /g4f/gui/client/static/css | |
parent | Merge pull request #1833 from hlohaus/curl (diff) | |
parent | Fix style.css (diff) | |
download | gpt4free-6afc6722a05f6d4498e6dcf19a7689ad58ffd444.tar gpt4free-6afc6722a05f6d4498e6dcf19a7689ad58ffd444.tar.gz gpt4free-6afc6722a05f6d4498e6dcf19a7689ad58ffd444.tar.bz2 gpt4free-6afc6722a05f6d4498e6dcf19a7689ad58ffd444.tar.lz gpt4free-6afc6722a05f6d4498e6dcf19a7689ad58ffd444.tar.xz gpt4free-6afc6722a05f6d4498e6dcf19a7689ad58ffd444.tar.zst gpt4free-6afc6722a05f6d4498e6dcf19a7689ad58ffd444.zip |
Diffstat (limited to 'g4f/gui/client/static/css')
-rw-r--r-- | g4f/gui/client/static/css/style.css | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/g4f/gui/client/static/css/style.css b/g4f/gui/client/static/css/style.css index fea52629..2f1043b2 100644 --- a/g4f/gui/client/static/css/style.css +++ b/g4f/gui/client/static/css/style.css @@ -602,7 +602,8 @@ label[for="camera"] { width: 100%; } -.buttons input:checked+label:after { +.buttons input:checked+label:after, +.settings input:checked+label:after { left: calc(100% - 5px - 20px); } @@ -844,6 +845,10 @@ ul { max-width: none; } + .settings h3 { + padding-left: 50px; + } + .buttons { align-items: flex-start; flex-wrap: wrap; @@ -1099,10 +1104,15 @@ a:-webkit-any-link { width: 100%; display: flex; flex-direction: column; + overflow: auto; +} + +.settings h3 { + padding-left: 10px; + padding-top: 10px; } .settings .paper { - overflow: auto; flex-direction: column; min-width: 400px; } |