You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
573 B
35 lines
573 B
@import "../../packages/excalidraw/css/variables.module.scss"; |
|
|
|
.excalidraw { |
|
.collab-errors-button { |
|
width: 26px; |
|
height: 26px; |
|
margin-inline-end: 1rem; |
|
|
|
color: var(--color-danger); |
|
|
|
flex-shrink: 0; |
|
} |
|
|
|
.collab-errors-button-shake { |
|
animation: strong-shake 0.15s 6; |
|
} |
|
|
|
@keyframes strong-shake { |
|
0% { |
|
transform: rotate(0deg); |
|
} |
|
25% { |
|
transform: rotate(10deg); |
|
} |
|
50% { |
|
transform: rotate(0deg); |
|
} |
|
75% { |
|
transform: rotate(-10deg); |
|
} |
|
100% { |
|
transform: rotate(0deg); |
|
} |
|
} |
|
}
|
|
|