Add micro-interactions and transitions for page and table elements
Wrap page content in a new div for animation effects and implement fade-in transitions for table rows.
This commit is contained in:
@@ -68,4 +68,23 @@
|
||||
|
||||
.icon-button-hover-error:hover {
|
||||
color: var(--mud-palette-error) !important;
|
||||
}
|
||||
|
||||
/* Micro-interactions: Table row transitions */
|
||||
.mud-table-row {
|
||||
transition: background-color 0.2s ease;
|
||||
}
|
||||
|
||||
/* Micro-interactions: Page transitions */
|
||||
.page-enter {
|
||||
animation: fadeIn 0.3s ease-in;
|
||||
}
|
||||
|
||||
@keyframes fadeIn {
|
||||
from {
|
||||
opacity: 0;
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user