-
Notifications
You must be signed in to change notification settings - Fork 572
feat: ui enhancements #153
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,4 +5,5 @@ | |
| **/venv/ | ||
| **/__pycache__/** | ||
| private.* | ||
| .venv | ||
| .venv | ||
| **/temp/ | ||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -325,7 +325,7 @@ response, err := http.Post( | |||||
|
|
||||||
| ## 💬 Need Help? | ||||||
|
|
||||||
| **🔗 [Join our Discord](https://discord.gg/qPaAuTCv)** for real-time setup assistance and HTTP integration support! | ||||||
| **🔗 [Join our Discord](https://getmax.im/bifrost-discord)** for real-time setup assistance and HTTP integration support! | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧹 Nitpick (assertive) Trim double space after exclamation There’s a double space before the section divider: -...support! ---
+...support! ---Purely cosmetic. 📝 Committable suggestion
Suggested change
🧰 Tools🪛 LanguageTool[grammar] ~328-~328: Use correct spacing (QB_NEW_EN_OTHER_ERROR_IDS_5) 🤖 Prompt for AI Agents |
||||||
|
|
||||||
| --- | ||||||
|
|
||||||
|
|
||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -121,3 +121,56 @@ | |
| @apply bg-background text-foreground; | ||
| } | ||
| } | ||
|
|
||
| @utility custom-scrollbar { | ||
| overflow: auto !important; | ||
| scrollbar-width: thin; /* Firefox */ | ||
| scrollbar-color: rgba(228, 228, 231, 1) transparent; /* Firefox */ | ||
|
Comment on lines
+126
to
+128
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧹 Nitpick (assertive)
For example, a modal with 🤖 Prompt for AI Agents |
||
|
|
||
| &::-webkit-scrollbar { | ||
| --custom-scrollbar-width: 8px; | ||
| --custom-scrollbar-height: 8px; | ||
| width: var(--custom-scrollbar-width, 8px); | ||
| height: var(--custom-scrollbar-height, 8px); | ||
| touch-action: none; | ||
| } | ||
|
|
||
| &::-webkit-scrollbar-track { | ||
| background-color: transparent; | ||
| } | ||
|
|
||
| &::-webkit-scrollbar-thumb { | ||
| --tw-bg-opacity: 1 !important; | ||
| background-color: rgba(228, 228, 231, var(--tw-bg-opacity)) !important; | ||
| border-radius: 8px; | ||
| opacity: 0; | ||
| visibility: hidden; | ||
| } | ||
|
|
||
| &:hover::-webkit-scrollbar-thumb { | ||
| opacity: 1; | ||
| visibility: visible; | ||
| } | ||
|
|
||
| &::-webkit-scrollbar-thumb:hover { | ||
| --tw-bg-opacity: 1 !important; | ||
| background-color: rgba(82, 82, 91, var(--tw-bg-opacity)) !important; | ||
| } | ||
|
|
||
| /* For older WebKit browsers */ | ||
| &::-webkit-scrollbar-thumb:horizontal { | ||
| background-color: rgba(228, 228, 231, var(--tw-bg-opacity)) !important; | ||
| } | ||
|
|
||
| &::-webkit-scrollbar-thumb:vertical { | ||
| background-color: rgba(228, 228, 231, var(--tw-bg-opacity)) !important; | ||
| } | ||
|
|
||
| &:hover::-webkit-scrollbar-thumb:horizontal { | ||
| background-color: rgba(82, 82, 91, var(--tw-bg-opacity)) !important; | ||
| } | ||
|
|
||
| &:hover::-webkit-scrollbar-thumb:vertical { | ||
| background-color: rgba(82, 82, 91, var(--tw-bg-opacity)) !important; | ||
| } | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧹 Nitpick (assertive)
Minor punctuation nitpick
The spaced hyphen reads as a minus; an em-dash improves readability:
Totally optional.
📝 Committable suggestion
🧰 Tools
🪛 LanguageTool
[typographical] ~46-~46: To join two clauses or set off examples, consider using an em dash.
Context: ...logging is enabled, there is no drop in performance - only memory usage increases due to the a...
(QB_NEW_EN_DASH_RULE_EM)
[grammar] ~46-~46: Use correct spacing
Context: ...due to the additional log storage being used. --- ## 🎯 Key Performance Highlights - **Perf...
(QB_NEW_EN_OTHER_ERROR_IDS_5)
🤖 Prompt for AI Agents