+
+
{dark ? (
{
)}
+
{isChrome() ? (
<>
@@ -207,6 +207,7 @@ const Header = ({ dark, toggleDarkMode }: ComponentProps) => {
>
) : null}
+
);
diff --git a/client/src/index.css b/client/src/index.css
index af23cf8..abe975b 100644
--- a/client/src/index.css
+++ b/client/src/index.css
@@ -35,7 +35,11 @@ body {
-moz-osx-font-smoothing: grayscale;
@apply transition-colors duration-200 bg-light-bg dark:bg-dark-bg;
max-width: 1024px;
- padding-bottom: 7vh;
+ /* padding-bottom: 7vh; */
+}
+
+footer {
+ max-width: 1024px;
}
code {
diff --git a/client/src/index.tsx b/client/src/index.tsx
index f32da67..0637067 100644
--- a/client/src/index.tsx
+++ b/client/src/index.tsx
@@ -6,7 +6,6 @@ import reportWebVitals from "./reportWebVitals";
import { Provider } from "react-redux";
import store from "./modules";
import Header from "./components/layout/Header";
-import Footer from "./components/layout/Footer";
import { BrowserRouter } from "react-router-dom";
import { QueryClient, QueryClientProvider } from "react-query";
import { RecoilRoot } from "recoil";
@@ -14,6 +13,7 @@ import ReactModal from "react-modal";
import { ToastContainer } from "react-toastify";
import "react-toastify/dist/ReactToastify.css";
import SquareBubble from "./components/layout/SquareBubble";
+import Footer from "./components/layout/Footer";
const queryClient = new QueryClient();
const rootElement = document.getElementById("root") as HTMLElement; // id가 'root'인 엘리먼트를 찾는 코드를 변수에 할당
@@ -28,9 +28,9 @@ root.render(
+
-