style: Add custom scrollbar styles for modal in facilities.css

This commit is contained in:
zhangyuheng
2026-03-05 11:51:49 +08:00
parent 8bdcdcd739
commit 6f75104578

View File

@@ -262,6 +262,25 @@
flex-direction: column; flex-direction: column;
} }
/* Custom Scrollbar for Modal */
.facility-modal-content::-webkit-scrollbar {
width: 6px;
}
.facility-modal-content::-webkit-scrollbar-track {
background: transparent;
margin: 10px 0;
}
.facility-modal-content::-webkit-scrollbar-thumb {
background: rgba(0, 0, 0, 0.15);
border-radius: 10px;
}
.facility-modal-content::-webkit-scrollbar-thumb:hover {
background: rgba(0, 0, 0, 0.25);
}
.close-modal { .close-modal {
position: absolute; position: absolute;
top: 20px; top: 20px;