diff options
Diffstat (limited to 'src/components/shared/SvgYacd.module.scss')
| -rw-r--r-- | src/components/shared/SvgYacd.module.scss | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/components/shared/SvgYacd.module.scss b/src/components/shared/SvgYacd.module.scss new file mode 100644 index 0000000..f668137 --- /dev/null +++ b/src/components/shared/SvgYacd.module.scss @@ -0,0 +1,14 @@ +.path { + stroke-dasharray: 890; + stroke-dashoffset: 890; + animation: dash 3s ease-in-out forwards normal infinite; +} + +@keyframes dash { + from { + stroke-dashoffset: 890; + } + to { + stroke-dashoffset: 0; + } +} |
