Spaces:
Running
Running
File size: 723 Bytes
1a97096 50f641f 1685b02 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
/* 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;
}
.tag-button {
background: none;
border: none;
padding: 0;
cursor: pointer;
display: inline-flex;
align-items: center;
font-size: 0.875rem;
color: #666;
background-color: #f5f5f5;
padding: 0.25rem 0.5rem;
border-radius: 0.375rem;
}
.tag-button:hover {
background-color: #e5e5e5;
}
|