Skip to content

Responsible tables not showing scrollbar #44

Description

@ajjp

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

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions