Add animation to Line Graph

This commit is contained in:
e26chiu 2022-12-31 18:39:45 -05:00
parent beb5fb809e
commit 1a29211c55
1 changed files with 6 additions and 2 deletions

View File

@ -4,10 +4,14 @@
fill: var(--label);
}
.line:hover {
filter: drop-shadow(0 0 calc(4rem / 16) var(--primary-accent));
.line {
transition: filter 0.5s ease-out;
}
.line:hover {
filter: drop-shadow(0 0 calc(4rem / 16) var(--primary-accent));
transition: filter 0.5s ease-out;
}
.wrapper {
display: flex;