33 lines
676 B
SCSS
33 lines
676 B
SCSS
/*!
|
|
* Copyright (c) 2024 PLANKA Software GmbH
|
|
* Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md
|
|
*/
|
|
|
|
:global(#app) {
|
|
.items {
|
|
margin-top: 8px;
|
|
max-height: 60vh;
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
|
|
@supports (-moz-appearance: none) {
|
|
scrollbar-color: rgba(0, 0, 0, 0.32) transparent;
|
|
scrollbar-width: thin;
|
|
}
|
|
|
|
&::-webkit-scrollbar {
|
|
width: 9px;
|
|
}
|
|
|
|
&::-webkit-scrollbar-track {
|
|
background: transparent;
|
|
}
|
|
|
|
&::-webkit-scrollbar-thumb {
|
|
background-clip: padding-box;
|
|
border-left: 0.25em transparent solid;
|
|
border-radius: 3px;
|
|
}
|
|
}
|
|
}
|