diff options
Diffstat (limited to 'g4f/gui/client/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; |