Open ajjp opened 2 years 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
Hi,
This selector in styles.scss causes scroll bars not showing for table = table-responsive, and everything else that needs a scrollbar, I guess:
Adding body to the selector seems to correct the issue:
Also menu-sidebar.component.html needs a small change:
from
to
At the moment I don't know if there are side effects caused by these changes.
BR