fix monitor list jumping to top on route change

This commit is contained in:
henrygd 2021-08-29 15:28:43 -07:00
parent 3ad736692f
commit 2776f942ab
3 changed files with 6 additions and 5 deletions

View file

@ -89,8 +89,9 @@ export default {
.list {
&.scrollbar {
height: calc(100vh - 20px);
overflow-y: scroll;
min-height: calc(100vh - 240px);
max-height: calc(100vh - 20px);
overflow-y: auto;
position: sticky;
top: 10px;
}