27 lines
423 B
CSS
27 lines
423 B
CSS
/* UserManagementPage.css */
|
|
.page-container {
|
|
padding: 24px;
|
|
background-color: #f8fafc;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.text-red-500 {
|
|
color: #ef4444;
|
|
}
|
|
|
|
/* Modal slide-in animation */
|
|
@keyframes slideIn {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(20px);
|
|
}
|
|
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
.animate-in {
|
|
animation: slideIn 0.3s ease-out forwards;
|
|
} |