From 79b471b41cdd87aeda0d73134cf86ccf099a9987 Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Wed, 2 Mar 2022 23:57:05 -0800 Subject: [PATCH] Remove CSS that was messing with text alignment. This was added by create-react-app. We're not using it any more. --- client/src/App.css | 38 -------------------------------------- client/src/App.tsx | 2 -- 2 files changed, 40 deletions(-) delete mode 100644 client/src/App.css diff --git a/client/src/App.css b/client/src/App.css deleted file mode 100644 index 74b5e053..00000000 --- a/client/src/App.css +++ /dev/null @@ -1,38 +0,0 @@ -.App { - text-align: center; -} - -.App-logo { - height: 40vmin; - pointer-events: none; -} - -@media (prefers-reduced-motion: no-preference) { - .App-logo { - animation: App-logo-spin infinite 20s linear; - } -} - -.App-header { - background-color: #282c34; - min-height: 100vh; - display: flex; - flex-direction: column; - align-items: center; - justify-content: center; - font-size: calc(10px + 2vmin); - color: white; -} - -.App-link { - color: #61dafb; -} - -@keyframes App-logo-spin { - from { - transform: rotate(0deg); - } - to { - transform: rotate(360deg); - } -} diff --git a/client/src/App.tsx b/client/src/App.tsx index 365062c3..fa02163a 100644 --- a/client/src/App.tsx +++ b/client/src/App.tsx @@ -1,5 +1,3 @@ -import "./App.css"; - import { LatLng } from "leaflet"; import LiberationMap from "./components/liberationmap"; import useEventStream from "./hooks/useEventSteam";