📚 Improved admin UI layout & design consistency 🎨

This commit is contained in:
2025-06-01 17:03:31 +02:00
parent 52d0bad64f
commit 7de193d4b2
5 changed files with 202 additions and 354 deletions

View File

@ -273,7 +273,32 @@
border-radius: 8px;
width: 80%;
max-width: 500px;
max-height: 90vh;
overflow-y: auto;
scrollbar-width: thin;
scrollbar-color: rgba(0, 115, 206, 0.2) transparent;
}
/* Modal Scrollbar Styling */
.modal-content::-webkit-scrollbar {
width: 8px;
}
.modal-content::-webkit-scrollbar-track {
background: transparent;
border-radius: 4px;
}
.modal-content::-webkit-scrollbar-thumb {
background: rgba(0, 115, 206, 0.2);
border-radius: 4px;
transition: all 0.3s ease;
}
.modal-content::-webkit-scrollbar-thumb:hover {
background: rgba(0, 115, 206, 0.4);
}
.close {
color: #aaa;
float: right;