-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(user): handled user service and auth
- Loading branch information
1 parent
05486cb
commit 39f5ea4
Showing
11 changed files
with
457 additions
and
114 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
.load-page { | ||
background: white; | ||
overflow: hidden; | ||
} | ||
|
||
.loader { | ||
width: 300px; | ||
height: 300px; | ||
margin: auto; | ||
} | ||
|
||
.loader div { | ||
width: calc(100% - 15px); | ||
height: calc(100% - 15px); | ||
border: 2px solid #fff; | ||
border-top: 2px solid lavender; | ||
border-radius: 50%; | ||
animation: rotate 10s linear infinite alternate-reverse; | ||
} | ||
|
||
@keyframes rotate { | ||
50% { | ||
transform: rotate(80deg); | ||
} | ||
100% { | ||
transform: rotate(360deg); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import React from 'react'; | ||
|
||
import './Loading.css'; | ||
|
||
const Loading = () => { | ||
return ( | ||
<div className="load-page"> | ||
<div className="loader"> | ||
<div> | ||
<div> | ||
<div> | ||
<div> | ||
<div> | ||
<div> | ||
<div> | ||
<div></div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
) | ||
} | ||
|
||
export default Loading; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.