+
+
+ {/* Minimal Show Only Starred Button */}
+
+
+
+
{headerGroups.map(headerGroup => (
diff --git a/src/components/Table/styles.scss b/src/components/Table/styles.scss
index 5c566b27..ad5327bf 100644
--- a/src/components/Table/styles.scss
+++ b/src/components/Table/styles.scss
@@ -123,3 +123,25 @@ body.dark-mode .modal-content {
text-wrap: nowrap;
}
}
+
+.star-animate {
+ animation: pop-star 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
+}
+
+@keyframes pop-star {
+ 0% {
+ transform: scale(1) rotate(0deg);
+ color: #ffd700;
+ filter: drop-shadow(0 0 0 #ffd700);
+ }
+ 60% {
+ transform: scale(1.5) rotate(-15deg);
+ color: #ffd700;
+ filter: drop-shadow(0 0 8px #ffd700);
+ }
+ 100% {
+ transform: scale(1) rotate(0deg);
+ color: #ffd700;
+ filter: drop-shadow(0 0 0 #ffd700);
+ }
+}