diff --git a/web/public/favicon.ico b/web/public/favicon.ico index a11777cc..73aa74ba 100644 Binary files a/web/public/favicon.ico and b/web/public/favicon.ico differ diff --git a/web/src/App.css b/web/src/App.css index ca441d26..c3ee31fb 100644 --- a/web/src/App.css +++ b/web/src/App.css @@ -9,7 +9,7 @@ @media (prefers-reduced-motion: no-preference) { .App-logo { - animation: App-logo-spin infinite 20s linear; + animation: App-logo-spin infinite 0.5s linear; } } @@ -45,10 +45,13 @@ } @keyframes App-logo-spin { - from { - transform: rotate(0deg); + 0% { + transform: scale(1,1); } - to { - transform: rotate(360deg); + 50% { + transform: scale(1.05,1.05); + } + 100% { + transform: scale(1,1); } } diff --git a/web/src/Components/Pages/Home.js b/web/src/Components/Pages/Home.js index 0556345a..3abd5043 100644 --- a/web/src/Components/Pages/Home.js +++ b/web/src/Components/Pages/Home.js @@ -1,4 +1,4 @@ -import logo from '../../logo.svg'; +import logo from '../../logo.png'; import '../../App.css'; function Home() { diff --git a/web/src/logo.png b/web/src/logo.png new file mode 100644 index 00000000..2c879990 Binary files /dev/null and b/web/src/logo.png differ diff --git a/web/src/logo.svg b/web/src/logo.svg deleted file mode 100644 index 9dfc1c05..00000000 --- a/web/src/logo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file