-
Notifications
You must be signed in to change notification settings - Fork 7.4k
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
How to remove the scrollbar? It doen't look good. #8454
Comments
I found a similar closed issue that might be relevant to your problem: share chat 页面有横向、纵向滚动条. This issue was resolved by a pull request: fix style in app share [1]. To hide the scrollbar while still allowing scrolling, you can use the following CSS: /* Hide scrollbar for Chrome, Safari and Opera */
.example::-webkit-scrollbar {
display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.example {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
} Apply this CSS to the relevant container in your chat interface. Replace |
I am referring to the vertical scrollbar |
Can you paste a full screenshot. |
Self Checks
Dify version
0.8.2
Cloud or Self Hosted
Cloud, Self Hosted (Docker)
Steps to reproduce
I want to disable the scrollbar, but still be able to scroll.
How to achieve this? This doesn't look good.
✔️ Expected Behavior
No response
❌ Actual Behavior
No response
The text was updated successfully, but these errors were encountered: