mirror of
https://github.com/plankanban/planka.git
synced 2025-12-25 17:25:01 +03:00
23 lines
357 B
SCSS
23 lines
357 B
SCSS
:global(#app) {
|
|
.menu {
|
|
margin: 8px auto 0;
|
|
max-height: 60vh;
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
scrollbar-width: thin;
|
|
width: 100%;
|
|
|
|
&::-webkit-scrollbar {
|
|
width: 5px;
|
|
}
|
|
|
|
&::-webkit-scrollbar-track {
|
|
background: transparent;
|
|
}
|
|
|
|
&::-webkit-scrollbar-thumb {
|
|
border-radius: 3px;
|
|
}
|
|
}
|
|
}
|