From b3a7e5523e9f34bb75583fdee00a18d630d93d3c Mon Sep 17 00:00:00 2001 From: Lucas Date: Sun, 14 Jan 2024 11:23:57 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=8F=97=EF=B8=8F=20move=20reset=20style=20?= =?UTF-8?q?to=20style=20folder?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/_app.tsx | 2 +- src/{components => styles}/GlobalStyle.ts | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/{components => styles}/GlobalStyle.ts (100%) diff --git a/src/pages/_app.tsx b/src/pages/_app.tsx index ee71281..25540ad 100644 --- a/src/pages/_app.tsx +++ b/src/pages/_app.tsx @@ -1,9 +1,9 @@ import "remixicon/fonts/remixicon.css"; import React from "react"; -import GlobalStyle from "@components/GlobalStyle"; import { GlobalThemeProvider } from "@contexts/GlobalTheme"; import { AppLayout } from "@layouts/AppLayout"; +import GlobalStyle from "@styles/GlobalStyle"; import type { AppProps } from "next/app"; import Head from "next/head"; diff --git a/src/components/GlobalStyle.ts b/src/styles/GlobalStyle.ts similarity index 100% rename from src/components/GlobalStyle.ts rename to src/styles/GlobalStyle.ts