mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-05 19:42:07 +08:00
15 lines
203 B
SCSS
15 lines
203 B
SCSS
// css vars root
|
|
:root {
|
|
--r-bezier: cubic-bezier(0.4, 0, 0.2, 1);
|
|
}
|
|
|
|
// animation root
|
|
@keyframes elementRotate {
|
|
from {
|
|
transform: rotate(0deg);
|
|
}
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|