added css for scroll bar modified

This commit is contained in:
Pramod Mahajan 2025-04-25 12:26:56 +05:30 committed by Gitea Admin
parent a2f6d77dcd
commit a7e9605ae3

View File

@ -100,3 +100,23 @@ button:focus-visible {
.checkbox-column { .checkbox-column {
flex: 1; flex: 1;
} }
/* Custom Scrollbar for Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
width: 6px; /* Width of the scrollbar */
height: 6px; /* Height of the scrollbar (for horizontal scrollbar) */
}
::-webkit-scrollbar-track {
background-color: #f1f1f1; /* Background of the scrollbar track */
border-radius: 2px; /* Rounded corners for the track */
}
::-webkit-scrollbar-thumb {
background-color: #888; /* Color of the scrollbar thumb */
border-radius: 10px; /* Rounded corners for the thumb */
}
::-webkit-scrollbar-thumb:hover {
background-color: #555; /* Color of the thumb on hover */
}