feat: Show collaborative cursors on load

closes #2704
This commit is contained in:
Tom Moor
2021-10-29 23:28:41 -07:00
parent e2c80e5a28
commit 5900176b58
2 changed files with 9 additions and 0 deletions

View File

@@ -6,6 +6,12 @@ export const fadeIn = keyframes`
to { opacity: 1; }
`;
export const fadeOutCursor = keyframes`
0% { opacity: 1; }
90% { opacity: 1; }
100% { opacity: 0; }
`;
export const fadeAndScaleIn = keyframes`
from {
opacity: 0;