1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-25 16:19:47 +02:00

feat: Add search by users, members and labels

This commit is contained in:
Maksim Eltyshev 2022-08-17 00:53:08 +02:00
parent 3a7720974b
commit 78669da01d
10 changed files with 195 additions and 47 deletions

View file

@ -1,7 +1,21 @@
:global(#app) {
.menu {
border: none;
margin: -7px auto -5px;
width: 100%;
.users {
margin-top: 8px;
max-height: 320px;
overflow-x: hidden;
overflow-y: auto;
scrollbar-width: thin;
&::-webkit-scrollbar {
width: 5px;
}
&::-webkit-scrollbar-track {
background: transparent;
}
&::-webkit-scrollbar-thumb {
border-radius: 3px;
}
}
}