0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-03-31 22:51:25 -05:00

refactor(console): refine scrollbar styles and positions

This commit is contained in:
Charles Zhao 2022-05-13 22:01:10 +08:00
parent 4e60446411
commit b381cc62aa
No known key found for this signature in database
GPG key ID: 4858774754C92DF2
2 changed files with 14 additions and 1 deletions

View file

@ -10,12 +10,12 @@
.content {
flex-grow: 1;
display: flex;
padding-right: _.unit(6);
margin-bottom: _.unit(6);
overflow: hidden;
.main {
flex-grow: 1;
padding-right: _.unit(6);
overflow-y: auto;
}
}

View file

@ -55,3 +55,16 @@ table {
}
}
}
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-thumb {
background: var(--color-neutral-variant-80);
border-radius: 4px;
}
::-webkit-scrollbar-track {
background: transparent;
}