0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-16 20:26:19 -05:00

fix(console): page content should not jump on scrollbar present (#1306)

This commit is contained in:
Xiao Yijun 2022-06-30 10:56:45 +08:00 committed by GitHub
parent 2ebefc0a13
commit 6d5a4f8aeb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -18,7 +18,7 @@
.main { .main {
flex-grow: 1; flex-grow: 1;
padding-right: _.unit(6); padding-right: _.unit(6);
overflow-y: auto; overflow-y: scroll;
> * { > * {
@include _.main-content-width; @include _.main-content-width;

View file

@ -10,7 +10,7 @@
flex: 1; flex: 1;
margin-right: _.unit(3); margin-right: _.unit(3);
height: 100%; height: 100%;
overflow-y: auto; overflow-y: scroll;
.tabs { .tabs {
padding-top: _.unit(2); padding-top: _.unit(2);