[fix] Add scroll in menu; Fix bug 77084

This commit is contained in:
PauI Ostrovckij
2025-10-02 10:24:36 +03:00
parent 8068100385
commit 04729f51f3

View File

@ -15,12 +15,22 @@
overflow-y: auto;
overflow-x: hidden;
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
/* WebKit */
/* Custom scrollbar styling to match main content */
&::-webkit-scrollbar {
display: none;
width: 6px;
}
&::-webkit-scrollbar-track {
background: #f1f1f1;
}
&::-webkit-scrollbar-thumb {
background: #c1c1c1;
border-radius: 3px;
}
&::-webkit-scrollbar-thumb:hover {
background: #a1a1a1;
}
}