From b78efd441d82f8f912403ef1b8cf4ec0e30b44d1 Mon Sep 17 00:00:00 2001 From: Manav Rathi Date: Fri, 10 Jan 2025 16:26:11 +0530 Subject: [PATCH] Unglob --- web/apps/auth/src/pages/_app.tsx | 2 -- web/apps/auth/src/styles/global.css | 13 ------------- 2 files changed, 15 deletions(-) delete mode 100644 web/apps/auth/src/styles/global.css diff --git a/web/apps/auth/src/pages/_app.tsx b/web/apps/auth/src/pages/_app.tsx index 1cf59cbcd6..e1094d83d7 100644 --- a/web/apps/auth/src/pages/_app.tsx +++ b/web/apps/auth/src/pages/_app.tsx @@ -24,8 +24,6 @@ import { useRouter } from "next/router"; import React, { useCallback, useEffect, useMemo, useState } from "react"; import { AppContext } from "types/context"; -import "styles/global.css"; - const App: React.FC = ({ Component, pageProps }) => { useSetupLogs(); diff --git a/web/apps/auth/src/styles/global.css b/web/apps/auth/src/styles/global.css deleted file mode 100644 index adf9621206..0000000000 --- a/web/apps/auth/src/styles/global.css +++ /dev/null @@ -1,13 +0,0 @@ -html, -body { - height: 100%; - flex: 1; - display: flex; - flex-direction: column; -} - -#__next { - flex: 1; - display: flex; - flex-direction: column; -}