erdkse / adminlte-3-angular

Angular 18.0.0 start-up project with AdminLTE 3.2.0 template
https://erdkse.com/projects/preview/adminlte-angular
MIT License
235 stars 191 forks source link

Responsible tables not showing scrollbar #44

Open ajjp opened 1 year ago

ajjp commented 1 year ago

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