diff options
author | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-04-11 02:40:30 +0200 |
---|---|---|
committer | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-04-11 02:40:30 +0200 |
commit | 009a67239a1df546fd22933a6b28eda03cd02a00 (patch) | |
tree | 6428fc06fe339e1c7cb197594dcb7399979a2e19 /g4f/gui/client/static/css | |
parent | Increase conversation title lenght (diff) | |
download | gpt4free-009a67239a1df546fd22933a6b28eda03cd02a00.tar gpt4free-009a67239a1df546fd22933a6b28eda03cd02a00.tar.gz gpt4free-009a67239a1df546fd22933a6b28eda03cd02a00.tar.bz2 gpt4free-009a67239a1df546fd22933a6b28eda03cd02a00.tar.lz gpt4free-009a67239a1df546fd22933a6b28eda03cd02a00.tar.xz gpt4free-009a67239a1df546fd22933a6b28eda03cd02a00.tar.zst gpt4free-009a67239a1df546fd22933a6b28eda03cd02a00.zip |
Diffstat (limited to 'g4f/gui/client/static/css')
-rw-r--r-- | g4f/gui/client/static/css/style.css | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/g4f/gui/client/static/css/style.css b/g4f/gui/client/static/css/style.css index 058fd521..fea52629 100644 --- a/g4f/gui/client/static/css/style.css +++ b/g4f/gui/client/static/css/style.css @@ -653,7 +653,7 @@ select { font-size: 15px; width: 100%; color: var(--colour-3); - min-height: 50px; + min-height: 49px; height: 59px; outline: none; padding: var(--inner-gap) var(--section-gap); @@ -809,7 +809,7 @@ ul { } .mobile-sidebar { - display: none !important; + display: none; position: absolute; z-index: 100000; top: 0; @@ -850,12 +850,8 @@ ul { gap: 15px; } - .field { - width: fit-content; - } - .mobile-sidebar { - display: flex !important; + display: flex; } #systemPrompt { @@ -1090,7 +1086,13 @@ a:-webkit-any-link { } .settings textarea { - height: 51px; + height: 19px; + min-height: 19px; + padding: 0; +} + +.settings .field.box { + padding: var(--inner-gap) var(--inner-gap) var(--inner-gap) 0; } .settings, .images { @@ -1112,7 +1114,6 @@ a:-webkit-any-link { .settings textarea { background-color: transparent; border: none; - padding: var(--inner-gap) 0; } .settings input { @@ -1130,10 +1131,7 @@ a:-webkit-any-link { .settings .label { font-size: 15px; - padding: var(--inner-gap) 0; - width: fit-content; - min-width: 190px; - margin-left: var(--section-gap); + margin-left: var(--inner-gap); white-space:nowrap; } |