Skip to content

Commit af72436

Browse files
committed
Changed to darker color
1 parent 9f593a5 commit af72436

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

src/components/loader/Loader.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const Loader = ({ color, message }) => {
1010
<div className="puff-two"></div>
1111
</div>
1212
{message ? (
13-
<div className="message text-primary text-center my-1">{message}</div>
13+
<div className="loader-message text-center my-1">{message}</div>
1414
) : null}
1515
</Fragment>
1616
);

src/components/loader/Loader.scss

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
.spinner {
2-
width: 50px;
3-
height: 50px;
2+
width: 70px;
3+
height: 70px;
44
position: relative;
55
margin: 20px auto 10px auto;
66
}
77

88
.puff-one {
99
width: 100%;
1010
height: 100%;
11-
border: thick solid #4b00ff;
11+
border: thick solid #0e4072;
1212
border-radius: 50%;
1313
opacity: 1;
1414
-webkit-animation: puff, puffop;
@@ -26,7 +26,7 @@
2626
.puff-two {
2727
width: 100%;
2828
height: 100%;
29-
border: thick solid #4b00ff;
29+
border: thick solid #0e4072;
3030
border-radius: 50%;
3131
opacity: 1;
3232
-webkit-animation: puff, puffop;

src/sass/app.scss

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,17 @@
6666
#poweredBy {
6767
a,
6868
a:hover {
69-
color: #4b00ff;
69+
color: #0e4072;
7070
}
7171
a::before {
72-
background-color: #4b00ff;
72+
background-color: #0e4072;
7373
}
7474
}
7575

76+
.loader-message {
77+
color: #0e4072;
78+
}
79+
7680
.card {
7781
background-color: #fdfdfd;
7882
}

0 commit comments

Comments
 (0)