Skip to content
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

Closed
5 tasks done
taowang1993 opened this issue Sep 14, 2024 · 4 comments
Closed
5 tasks done

How to remove the scrollbar? It doen't look good. #8454

taowang1993 opened this issue Sep 14, 2024 · 4 comments
Labels
💪 enhancement New feature or request

Comments

@taowang1993
Copy link
Contributor

Self Checks

  • This is only for bug report, if you would like to ask a question, please head to Discussions.
  • I have searched for existing issues search for existing issues, including closed ones.
  • I confirm that I am using English to submit this report (我已阅读并同意 Language Policy).
  • [FOR CHINESE USERS] 请务必使用英文提交 Issue,否则会被关闭。谢谢!:)
  • Please do not modify this template :) and fill in all the required fields.

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.
image

✔️ Expected Behavior

No response

❌ Actual Behavior

No response

Copy link

dosubot bot commented Sep 14, 2024

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 .example with the appropriate class or ID of the container where you want to hide the scrollbar.

To continue talking to Dosu, mention @dosu.

@dosubot dosubot bot added the 💪 enhancement New feature or request label Sep 14, 2024
@taowang1993
Copy link
Contributor Author

I am referring to the vertical scrollbar

@crazywoola
Copy link
Member

Can you paste a full screenshot.

@taowang1993
Copy link
Contributor Author

Can you paste a full screenshot.

This is the iframe embed chatbot

image

@dosubot dosubot bot added the stale Issue has not had recent activity or appears to be solved. Stale issues will be automatically closed label Oct 16, 2024
@dosubot dosubot bot closed this as not planned Won't fix, can't repro, duplicate, stale Oct 31, 2024
@dosubot dosubot bot removed the stale Issue has not had recent activity or appears to be solved. Stale issues will be automatically closed label Oct 31, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
💪 enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants