ai-deadlines / src /styles /globals.css
nielsr's picture
nielsr HF staff
Update filters
1685b02
raw
history blame contribute delete
723 Bytes
/* 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;
}