diff options
author | Tekky <98614666+xtekky@users.noreply.github.com> | 2023-10-28 09:27:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-28 09:27:53 +0200 |
commit | 1dc8e6d528c5deff96db56beb73329ab7f229cf8 (patch) | |
tree | ae6919124bb9da2e5f6d7d94e8c4dd80c11d8925 /g4f/gui/client/css/style.css | |
parent | Merge pull request #1177 from hlohaus/arkose (diff) | |
parent | added context (diff) | |
download | gpt4free-1dc8e6d528c5deff96db56beb73329ab7f229cf8.tar gpt4free-1dc8e6d528c5deff96db56beb73329ab7f229cf8.tar.gz gpt4free-1dc8e6d528c5deff96db56beb73329ab7f229cf8.tar.bz2 gpt4free-1dc8e6d528c5deff96db56beb73329ab7f229cf8.tar.lz gpt4free-1dc8e6d528c5deff96db56beb73329ab7f229cf8.tar.xz gpt4free-1dc8e6d528c5deff96db56beb73329ab7f229cf8.tar.zst gpt4free-1dc8e6d528c5deff96db56beb73329ab7f229cf8.zip |
Diffstat (limited to 'g4f/gui/client/css/style.css')
-rw-r--r-- | g4f/gui/client/css/style.css | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/g4f/gui/client/css/style.css b/g4f/gui/client/css/style.css index 59efeda0..c494de3a 100644 --- a/g4f/gui/client/css/style.css +++ b/g4f/gui/client/css/style.css @@ -260,6 +260,32 @@ body { z-index: 10000; } +.message .assistant{ + max-width: 48px; + max-height: 48px; + flex-shrink: 0; +} + +.message .assistant img { + width: 100%; + height: 100%; + object-fit: cover; + border-radius: 8px; + outline: 1px solid var(--blur-border); +} + +.message .assistant:after { + content: "63"; + position: absolute; + bottom: 0; + right: 0; + height: 60%; + width: 60%; + background: var(--colour-3); + filter: blur(10px) opacity(0.5); + z-index: 10000; +} + .message .content { display: flex; flex-direction: column; @@ -280,6 +306,13 @@ body { z-index: 1000; } +.message .assistant i { + position: absolute; + bottom: -6px; + right: -6px; + z-index: 1000; +} + .new_convo { padding: 8px 12px; display: flex; |