adding back css that was removed

This commit is contained in:
Beverly Nguyen
2025-11-12 13:36:52 -08:00
parent 77d9bfb870
commit 0f995ce392
3 changed files with 25 additions and 1 deletions

View File

@@ -43,3 +43,8 @@
display: inline-flex;
justify-content: center;
}
.button-not-clickable {
cursor: default;
pointer-events: none;
}

View File

@@ -47,3 +47,22 @@ td.table-empty-message {
box-shadow: none;
}
}
.is-highlighted {
td {
background-color: color('blue-cool-5v');
animation: fadeHighlight 3s ease-out forwards;
}
}
@keyframes fadeHighlight {
0% {
background-color: color('blue-cool-10v');
}
50% {
background-color: color('blue-cool-5v');
}
100% {
background-color: transparent;
}
}