diff options
author | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-03-14 18:49:41 +0100 |
---|---|---|
committer | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-03-14 18:49:41 +0100 |
commit | 95b1b8c02574faacd520d8fd539a1e1d93035aa2 (patch) | |
tree | 86df2f5121e611ac910c71ddc79704118b9b4a93 /g4f/gui/client/css | |
parent | Filter not working provider from RetryProvider (diff) | |
download | gpt4free-95b1b8c02574faacd520d8fd539a1e1d93035aa2.tar gpt4free-95b1b8c02574faacd520d8fd539a1e1d93035aa2.tar.gz gpt4free-95b1b8c02574faacd520d8fd539a1e1d93035aa2.tar.bz2 gpt4free-95b1b8c02574faacd520d8fd539a1e1d93035aa2.tar.lz gpt4free-95b1b8c02574faacd520d8fd539a1e1d93035aa2.tar.xz gpt4free-95b1b8c02574faacd520d8fd539a1e1d93035aa2.tar.zst gpt4free-95b1b8c02574faacd520d8fd539a1e1d93035aa2.zip |
Diffstat (limited to 'g4f/gui/client/css')
-rw-r--r-- | g4f/gui/client/css/style.css | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/g4f/gui/client/css/style.css b/g4f/gui/client/css/style.css index 045eae99..ba3f1187 100644 --- a/g4f/gui/client/css/style.css +++ b/g4f/gui/client/css/style.css @@ -15,7 +15,7 @@ margin: auto; display: flex; flex-direction: column; - gap: 16px; + gap: var(--inner-gap); max-width: 200px; padding: var(--section-gap); overflow: none; @@ -183,7 +183,8 @@ body { .conversations { display: flex; flex-direction: column; - gap: 16px; + gap: var(--inner-gap); + padding: var(--inner-gap); } .conversations .title { @@ -573,7 +574,7 @@ label[for="camera"] { height: fit-content; display: flex; align-items: center; - gap: 16px; + gap: var(--inner-gap); } .field .about { @@ -657,10 +658,15 @@ select { font-size: 14px; } +.bottom_buttons button a { + color: var(--colour-3); + font-weight: 500; +} + .conversations .top { display: flex; flex-direction: column; - gap: 16px; + gap: var(--inner-gap); overflow: auto; } |