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:
parent
4e60446411
commit
b381cc62aa
2 changed files with 14 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue