diff options
| author | A.J. Shulman <Shulman.aj@gmail.com> | 2024-09-07 11:48:36 -0400 |
|---|---|---|
| committer | A.J. Shulman <Shulman.aj@gmail.com> | 2024-09-07 11:48:36 -0400 |
| commit | 210f8f5f1cd19e9416a12524cce119b273334fd3 (patch) | |
| tree | 02268cd69abc868c428f42e8d57812a4f29be1a7 /src/client/views/nodes/ChatBox/ChatBox.scss | |
| parent | 0b3c2ed595b85391e9833a3b7710d2169439a582 (diff) | |
reorganized parsers, added comments to vectorstore, and added citation popup for text citations
Diffstat (limited to 'src/client/views/nodes/ChatBox/ChatBox.scss')
| -rw-r--r-- | src/client/views/nodes/ChatBox/ChatBox.scss | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/client/views/nodes/ChatBox/ChatBox.scss b/src/client/views/nodes/ChatBox/ChatBox.scss index adb0663c3..42f6a0d61 100644 --- a/src/client/views/nodes/ChatBox/ChatBox.scss +++ b/src/client/views/nodes/ChatBox/ChatBox.scss @@ -116,6 +116,33 @@ $transition: all 0.3s ease; } } } + .citation-popup { + position: fixed; + bottom: 50px; + left: 50%; + transform: translateX(-50%); + background-color: rgba(0, 0, 0, 0.8); + color: white; + padding: 10px 20px; + border-radius: 10px; + box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); + z-index: 1000; + animation: fadeIn 0.3s ease-in-out; + + p { + margin: 0; + font-size: 14px; + } + + @keyframes fadeIn { + from { + opacity: 0; + } + to { + opacity: 1; + } + } + } } .message { |
