dashboard
repositories
filestore
activity
search
login
main
/
moral_manage
summary
reflog
commits
tree
tickets
docs
forks
compare
blame
|
history
|
raw
fix: 高德密钥修改
quanyawei
2024-07-09
9e92d9fb2f4c7aea544b3286c774c72d931f248b
[moral_manage.git]
/
src
/
assets
/
theme
/
styles
/
app
/
utils
/
rotate.less
1
2
3
4
5
6
7
8
9
10
@rotate-count: 24;
.rotate-loop (@i) when (@i > 0) {
@num: @i * 15;
.rotate-@{num} {
transform: rotate(~'@{num}deg');
}
.rotate-loop(@i - 1);
}
.rotate-loop(@rotate-count);