mirror of
https://github.com/plankanban/planka.git
synced 2025-07-22 14:49:43 +02:00
21 lines
338 B
SCSS
21 lines
338 B
SCSS
:global(#app) {
|
|
.users {
|
|
margin-top: 8px;
|
|
max-height: 60vh;
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
scrollbar-width: thin;
|
|
|
|
&::-webkit-scrollbar {
|
|
width: 5px;
|
|
}
|
|
|
|
&::-webkit-scrollbar-track {
|
|
background: transparent;
|
|
}
|
|
|
|
&::-webkit-scrollbar-thumb {
|
|
border-radius: 3px;
|
|
}
|
|
}
|
|
}
|