loader hover and devlist fixes
This commit is contained in:
@ -1,4 +1,6 @@
|
||||
import SVGLoader from "react-loader-spinner";
|
||||
import './loader.css'
|
||||
|
||||
export const Loader = () => {
|
||||
return (
|
||||
<div className='loader'>
|
||||
@ -7,7 +9,6 @@ export const Loader = () => {
|
||||
color="#fff"
|
||||
height={50}
|
||||
width={50}
|
||||
timeout={3000}
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
|
11
src/components/Loader/loader.css
Normal file
11
src/components/Loader/loader.css
Normal file
@ -0,0 +1,11 @@
|
||||
.loader {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.loader:hover path {
|
||||
fill: #6aaf5c;
|
||||
}
|
Reference in New Issue
Block a user