huggingface/ai-deadlines
781
1/* Add these styles to make the filter tags more interactive */2.filter-tag {3 @apply transition-all duration-200;4}5 6.filter-tag:hover {7 @apply transform scale-105;8}9 10/* Add a subtle pulse animation for the active filters */11@keyframes subtle-pulse {12 0% { transform: scale(1); }13 50% { transform: scale(1.02); }14 100% { transform: scale(1); }15}16 17.filter-tag-active {18 animation: subtle-pulse 2s infinite;19}20 21.tag-button {22 background: none;23 border: none;24 padding: 0;25 cursor: pointer;26 display: inline-flex;27 align-items: center;28 font-size: 0.875rem;29 color: #666;30 background-color: #f5f5f5;31 padding: 0.25rem 0.5rem;32 border-radius: 0.375rem;33}34 35.tag-button:hover {36 background-color: #e5e5e5;37}38 