Skip to content

Commit af194ed

Browse files
committed
OAuth working
1 parent 89e9615 commit af194ed

9 files changed

Lines changed: 607 additions & 9 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
22

3+
public/config.js
4+
35
# dependencies
46
/node_modules
57
/.pnp

package-lock.json

Lines changed: 28 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"react-bootstrap": "^1.5.2",
1212
"react-dom": "^17.0.2",
1313
"react-scripts": "4.0.3",
14+
"react-toastify": "^7.0.3",
1415
"web-vitals": "^1.0.1"
1516
},
1617
"scripts": {

public/index.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
crossorigin="anonymous"
1818
>
1919
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
20+
<!-- external configuration file. See https://stackoverflow.com/a/55019395/64904 -->
21+
<script src="config.js"></script>
2022
<!--
2123
manifest.json provides metadata used when your web app is installed on a
2224
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/

public/logo192.png

5.22 KB
Loading

public/logo512.png

9.44 KB
Loading

src/App.css

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,47 @@
11
.header {
22
text-align: center;
33
}
4+
5+
.navbar-expand .navbar-nav .nav-link {
6+
padding-left: 0px;
7+
}
8+
9+
.welcomeMargin {
10+
margin-top: 5rem;
11+
}
12+
13+
.bodyMargin{
14+
margin-top: 10rem;
15+
}
16+
17+
/* From http://tobiasahlin.com/spinkit/ */
18+
.spinner {
19+
width: 40px;
20+
height: 40px;
21+
background-color: blue;
22+
margin: 0px 0px 15px 0px;
23+
-webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
24+
animation: sk-rotateplane 1.2s infinite ease-in-out;
25+
}
26+
27+
@-webkit-keyframes sk-rotateplane {
28+
0% { -webkit-transform: perspective(120px) }
29+
50% { -webkit-transform: perspective(120px) rotateY(180deg) }
30+
100% { -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg) }
31+
}
32+
33+
@keyframes sk-rotateplane {
34+
0% {
35+
transform: perspective(120px) rotateX(0deg) rotateY(0deg);
36+
-webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
37+
} 50% {
38+
transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
39+
-webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
40+
} 100% {
41+
transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
42+
-webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
43+
}
44+
}
45+
46+
@import '~react-toastify/dist/ReactToastify.css';
447

0 commit comments

Comments
 (0)