Skip to content

Commit

Permalink
Fix loader issue
Browse files Browse the repository at this point in the history
  • Loading branch information
nukeop committed Apr 29, 2018
1 parent f08d79c commit 7cd368a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<body>
<div id="react_root"></div>
<div class="loader-container">
<div class="loader">
<div class="nuclear-loader">
<span></span>
<span></span>
<span></span>
Expand Down
2 changes: 1 addition & 1 deletion index.prod.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

<div id="react_root"></div>
<div class="loader-container">
<div class="loader">
<div class="nuclear-loader">
<span></span>
<span></span>
<span></span>
Expand Down
10 changes: 5 additions & 5 deletions loader.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ body {
z-index: -1;
}

.loader {
.nuclear-loader {
position: relative;
display: flex;
flex-flow: column;
Expand All @@ -40,7 +40,7 @@ body {
}
}

.loader>span {
.nuclear-loader>span {
position: absolute;
width: 0;
height: 0;
Expand All @@ -49,18 +49,18 @@ body {
border-right: 3rem solid transparent;
}

.loader>span:nth-child(1) {
.nuclear-loader>span:nth-child(1) {
right: 4.5rem;
top: 3.5rem;
}

.loader>span:nth-child(2) {
.nuclear-loader>span:nth-child(2) {
right: 7.5rem;
bottom: 3.5rem;

}

.loader>span:nth-child(3) {
.nuclear-loader>span:nth-child(3) {
left: 7.5rem;
bottom: 3.5rem;
}
Expand Down

0 comments on commit 7cd368a

Please sign in to comment.