Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed button hover effect #314

Merged
merged 12 commits into from
Mar 4, 2022
10 changes: 8 additions & 2 deletions src/lib/components/events/event-item.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,14 @@
transition: all 0.15s ease-in-out;
}

.event-body:hover .event-name {
color: rgb(var(--highlights, --acm-general-rgb));
.event-body:hover {
.event-name {
color: rgb(var(--highlights, --acm-general-rgb));
}

.event-join:hover {
color: rgb(var(--highlights, --acm-general-rgb));
}
}

.event-body h2 {
Expand Down