BUG: Fixed issues with pointer event listeners on calendar selector

This commit is contained in:
Ivymaster
2026-05-18 17:45:08 +02:00
parent 3cf7543586
commit ddfcb68d62
10 changed files with 329 additions and 262 deletions
+23
View File
@@ -54,4 +54,27 @@ div[role="row"] {
.v-enter-from,
.v-leave-to {
opacity: 0;
}
.scrollable {
overflow: auto;
/* Firefox */
scrollbar-width: thin;
scrollbar-color: #888 transparent;
}
/* Chrome / Edge / Safari */
.scrollable::-webkit-scrollbar {
width: 6px;
height: 6px;
}
.scrollable::-webkit-scrollbar-thumb {
background: #888;
border-radius: 999px;
}
.scrollable::-webkit-scrollbar-track {
background: transparent;
}