Skip to content

Commit

Permalink
fix: fix loader spinner were not showing well
Browse files Browse the repository at this point in the history
  • Loading branch information
GabrielCarames committed Oct 13, 2022
1 parent 2c85d15 commit 1e12735
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/AddFriend/AddFriend.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export default function AddFriend({
onChange={e => setInputValue(e.target.value)}
/>
{isLoading && inputValue.length >= 1 ? (
<div className="loader-spinner">
<div className="add-friend-loader-spinner">
<Oval
height={50}
width={50}
Expand Down
2 changes: 1 addition & 1 deletion src/components/AddFriend/_addFriend.scss
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
outline: 1px solid #dd4ec6;
}
}
.loader-spinner {
.add-friend-loader-spinner {
width: 100%;
padding-top: 30px;
display: flex;
Expand Down
2 changes: 1 addition & 1 deletion src/scss/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -1067,7 +1067,7 @@ html body #root .App ul {
.add-friend-section .add-friend-section__input:focus {
outline: 1px solid #dd4ec6;
}
.add-friend-section .loader-spinner {
.add-friend-section .add-friend-loader-spinner {
width: 100%;
padding-top: 30px;
display: flex;
Expand Down

0 comments on commit 1e12735

Please sign in to comment.