diff options
author | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-04-10 14:23:30 +0200 |
---|---|---|
committer | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-04-10 14:23:30 +0200 |
commit | 65bcc8ae8bfc435b302be7cad0f4f87961154646 (patch) | |
tree | 0f65dde345aa2b6d0d87b5caf78169b6357761e1 /g4f/gui/client/static/css | |
parent | Add OpenRouter and DeepInfraImage Provider (#1814) (diff) | |
download | gpt4free-65bcc8ae8bfc435b302be7cad0f4f87961154646.tar gpt4free-65bcc8ae8bfc435b302be7cad0f4f87961154646.tar.gz gpt4free-65bcc8ae8bfc435b302be7cad0f4f87961154646.tar.bz2 gpt4free-65bcc8ae8bfc435b302be7cad0f4f87961154646.tar.lz gpt4free-65bcc8ae8bfc435b302be7cad0f4f87961154646.tar.xz gpt4free-65bcc8ae8bfc435b302be7cad0f4f87961154646.tar.zst gpt4free-65bcc8ae8bfc435b302be7cad0f4f87961154646.zip |
Diffstat (limited to 'g4f/gui/client/static/css')
-rw-r--r-- | g4f/gui/client/static/css/style.css | 32 |
1 files changed, 20 insertions, 12 deletions
diff --git a/g4f/gui/client/static/css/style.css b/g4f/gui/client/static/css/style.css index 8e967806..6bd9c540 100644 --- a/g4f/gui/client/static/css/style.css +++ b/g4f/gui/client/static/css/style.css @@ -646,6 +646,21 @@ select { width: 160px; } +#systemPrompt, .settings textarea { + font-size: 15px; + width: 100%; + color: var(--colour-3); + min-height: 50px; + height: 59px; + outline: none; + padding: var(--inner-gap) var(--section-gap); + resize: vertical; +} + +#systemPrompt { + padding-left: 35px; +} + @media only screen and (min-width: 40em) { select { width: 200px; @@ -836,6 +851,10 @@ ul { .mobile-sidebar { display: flex !important; } + + #systemPrompt { + padding-left: 48px; + } } .shown { @@ -1064,22 +1083,11 @@ a:-webkit-any-link { border: 1px solid #e4d4ffc9; } -#systemPrompt, .settings textarea { - font-size: 15px; - width: 100%; - color: var(--colour-3); - min-height: 50px; - height: 59px; - outline: none; - padding: var(--inner-gap) var(--section-gap); - resize: vertical; -} - .settings textarea { height: 51px; } -.settings { +.settings, .images { width: 100%; display: flex; flex-direction: column; |