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:
parent
2ebefc0a13
commit
6d5a4f8aeb
2 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||||
|
|
|
@ -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);
|
||||||
|
|
Loading…
Reference in a new issue