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

Responsible tables not showing scrollbar #44

Open
ajjp opened this issue Oct 8, 2022 · 0 comments
Open

Responsible tables not showing scrollbar #44

ajjp opened this issue Oct 8, 2022 · 0 comments

Comments

@ajjp
Copy link

ajjp commented Oct 8, 2022

Hi,

This selector in styles.scss causes scroll bars not showing for table = table-responsive, and everything else that needs a scrollbar, I guess:

::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

Adding body to the selector seems to correct the issue:

body::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

Also menu-sidebar.component.html needs a small change:

from

<!-- Sidebar Menu -->
<nav class="mt-2" style="overflow-y: hidden">

to

<!-- Sidebar Menu -->
<nav class="mt-2" style="overflow: hidden">

At the moment I don't know if there are side effects caused by these changes.

BR

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant