adminlte-3-angular icon indicating copy to clipboard operation
adminlte-3-angular copied to clipboard

Responsible tables not showing scrollbar

Open ajjp opened this issue 3 years ago • 0 comments

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

ajjp avatar Oct 08 '22 17:10 ajjp