Spaces:
Running
Running
File size: 418 Bytes
50f641f 1a97096 50f641f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
/* Add these styles to make the filter tags more interactive */
.filter-tag {
@apply transition-all duration-200;
}
.filter-tag:hover {
@apply transform scale-105;
}
/* Add a subtle pulse animation for the active filters */
@keyframes subtle-pulse {
0% { transform: scale(1); }
50% { transform: scale(1.02); }
100% { transform: scale(1); }
}
.filter-tag-active {
animation: subtle-pulse 2s infinite;
}
|