diff --git a/src/AppContainer.tsx b/src/AppContainer.tsx index d446ec014..26b2cdf30 100644 --- a/src/AppContainer.tsx +++ b/src/AppContainer.tsx @@ -4,15 +4,9 @@ import { useLocation } from "react-router-dom"; import { Footer } from "./components/Layout/Footer"; import { NavigationBar, leftNavItems, rightNavItems } from "./components/Layout/NavigationBar"; import { Routes, routes } from "./routes"; -import styled from "@emotion/styled"; import { useProviderContext } from "./common/contexts/provider"; import { getChainInfo } from "./common/utils/chain-utils"; -const Main = styled.main` - background-image: url("/static/images/common/wave-lines.png"); - background-size: cover; -`; - const AppContainer = (): React.ReactElement => { const location = useLocation(); const [toggleNavBar, setToggleNavBar] = useState(false); @@ -36,9 +30,12 @@ const AppContainer = (): React.ReactElement => { leftItems={leftNavItems} rightItems={rightNavItems} /> -
+
-
+