Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yohobuywap-node
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
陈峰
7 years ago
Commit
2722e831f7400b409d2c8fdb4bf2d3cfab24eb92
1 parent
2572c771
fix loading css build error
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
public/scss/layout/loading.scss
public/scss/layout/loading.scss
View file @
2722e83
...
...
@@ -51,11 +51,11 @@
>
div
{
$init
:
0
.12s
;
@for
$i
from
1
to
3
{
&
:nth-child
(
$
i
)
{
@for
$i
from
1
through
3
{
&
:nth-child
(
#{
$i
}
)
{
animation
:
loadingScale
0
.75s
$init
infinite
cubic-bezier
(
0
.2
,
0
.68
,
0
.18
,
1
.08
);
}
$init
:
calc
((
$i
+
1
)
*
0
.12
);
$init
:
calc
((
#{
$i
}
+
1
)
*
0
.12
);
}
display
:
inline-block
;
...
...
Please
register
or
login
to post a comment