Skip to content

Commit

Permalink
Improve scrollbars behaviour.
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiocaccamo committed Sep 13, 2023
1 parent 58ddffb commit 89670c6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/fontra/client/web-components/ui-list.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ export class UIList extends UnlitElement {
}
.container {
overflow: scroll;
overflow-x: hidden;
overflow-y: auto;
height: 100%;
width: 100%;
box-sizing: border-box;
Expand All @@ -50,7 +51,8 @@ export class UIList extends UnlitElement {
}
.header-container {
overflow: scroll;
overflow-x: hidden;
overflow-y: auto;
height: 100%;
width: 100%;
box-sizing: border-box;
Expand Down

0 comments on commit 89670c6

Please sign in to comment.