Pull request: 3395 fix table scroll styles

Closes #3395

Squashed commit of the following:

commit 63fd4593977cd2ac6595344f681df499dc62abb1
Author: Ildar Kamalov <ik@adguard.com>
Date:   Mon Aug 16 11:58:26 2021 +0300

    client: fix table scroll styles
This commit is contained in:
Ildar Kamalov 2021-08-16 13:34:44 +03:00
parent 394c2f65e0
commit 8e667d3cc4
3 changed files with 3 additions and 3 deletions

View File

@ -52,7 +52,7 @@ body {
.modal-body--medium {
max-height: 20rem;
overflow-y: scroll;
overflow-y: auto;
}
.modal-body__item:not(:first-child) {

View File

@ -6,7 +6,7 @@
pointer-events: auto !important;
background-color: var(--white);
z-index: 102;
overflow-y: scroll;
overflow-y: auto;
max-height: 100%;
}

View File

@ -388,7 +388,7 @@
border-collapse: collapse;
contain: layout;
overflow-x: hidden;
overflow-y: scroll;
overflow-y: auto;
will-change: scroll-position;
}