Skip to content

Commit

Permalink
Pull request: 3395 fix table scroll styles
Browse files Browse the repository at this point in the history
Closes AdguardTeam#3395

Squashed commit of the following:

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

    client: fix table scroll styles
  • Loading branch information
IldarKamalov committed Aug 16, 2021
1 parent 394c2f6 commit 8e667d3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion client/src/components/App/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ body {

.modal-body--medium {
max-height: 20rem;
overflow-y: scroll;
overflow-y: auto;
}

.modal-body__item:not(:first-child) {
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/Logs/Cells/IconTooltip.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
pointer-events: auto !important;
background-color: var(--white);
z-index: 102;
overflow-y: scroll;
overflow-y: auto;
max-height: 100%;
}

Expand Down
2 changes: 1 addition & 1 deletion client/src/components/Logs/Logs.css
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@
border-collapse: collapse;
contain: layout;
overflow-x: hidden;
overflow-y: scroll;
overflow-y: auto;
will-change: scroll-position;
}

Expand Down

0 comments on commit 8e667d3

Please sign in to comment.