Skip to content

Commit

Permalink
[twisty] Fade in SVGs.
Browse files Browse the repository at this point in the history
  • Loading branch information
lgarron committed Jan 24, 2022
1 parent 06f77db commit 6515b9b
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/cubing/twisty/views/2D/Twisty2DPuzzle.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,13 @@ svg {
display: grid;
min-height: 0;
}
svg {
animation: fade-in 0.25s ease-in;
}
@keyframes fade-in {
from { opacity: 0; }
to { opacity: 1; }
}
`);

0 comments on commit 6515b9b

Please sign in to comment.