diff --git a/app/styles/app.scss b/app/styles/app.scss index 108cc3d8..0b9c0e30 100644 --- a/app/styles/app.scss +++ b/app/styles/app.scss @@ -38,6 +38,7 @@ @import "app/modules/forms"; @import "app/modules/notice"; +@import "app/animation/wheelbarrow"; @import "app/layout"; @import "app/layouts/dashboard"; diff --git a/app/styles/app/animation/wheelbarrow.sass b/app/styles/app/animation/wheelbarrow.sass new file mode 100644 index 00000000..6681466d --- /dev/null +++ b/app/styles/app/animation/wheelbarrow.sass @@ -0,0 +1,18 @@ +#wheelbarrow + + +#small-box + display: none + +#big-box + transform-origin: center center + animation: + + + +@keyframes bigBox + 0% + transform: translate(11%, -25%)rotateZ(5deg) + + 100% + transform: translate(0, 0)rotateZ(0) \ No newline at end of file