bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/whiteboard/shapes/pencil/styles.scss
2017-03-21 15:00:01 -07:00

12 lines
161 B
SCSS
Executable File

.path {
stroke-dasharray: 3000;
stroke-dashoffset: 3000;
animation: dash 0.5s linear forwards;
}
@keyframes dash {
to {
stroke-dashoffset: 0;
}
}