Skip to content

Commit 9f593a5

Browse files
committed
Colour change for loader
1 parent c68d541 commit 9f593a5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
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-info text-center my-1">{message}</div>
13+
<div className="message text-primary text-center my-1">{message}</div>
1414
) : null}
1515
</Fragment>
1616
);

src/components/loader/Loader.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
.puff-one {
99
width: 100%;
1010
height: 100%;
11-
border: thick solid #32a1ce;
11+
border: thick solid #4b00ff;
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 #32a1ce;
29+
border: thick solid #4b00ff;
3030
border-radius: 50%;
3131
opacity: 1;
3232
-webkit-animation: puff, puffop;

0 commit comments

Comments
 (0)