loader hover and devlist fixes

This commit is contained in:
kurpfish
2021-08-09 16:12:06 +03:00
parent f0a92fd8f2
commit 21d95a9c04
7 changed files with 74 additions and 49 deletions

View File

@ -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>
);

View File

@ -0,0 +1,11 @@
.loader {
height: 100%;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.loader:hover path {
fill: #6aaf5c;
}