From f293e14ed1e78c42f05f9039bbcdd6e9b9214520 Mon Sep 17 00:00:00 2001 From: Venessa Kuchenik Date: Thu, 10 Jul 2025 08:11:24 -0700 Subject: [PATCH] Reorganized file structure Moved app.css and index.css into the css folder. --- client/src/{ => css}/App.css | 0 client/src/{ => css}/index.css | 0 client/src/main.jsx | 2 +- 3 files changed, 1 insertion(+), 1 deletion(-) rename client/src/{ => css}/App.css (100%) rename client/src/{ => css}/index.css (100%) diff --git a/client/src/App.css b/client/src/css/App.css similarity index 100% rename from client/src/App.css rename to client/src/css/App.css diff --git a/client/src/index.css b/client/src/css/index.css similarity index 100% rename from client/src/index.css rename to client/src/css/index.css diff --git a/client/src/main.jsx b/client/src/main.jsx index e16b3ff..b024476 100644 --- a/client/src/main.jsx +++ b/client/src/main.jsx @@ -1,7 +1,7 @@ import { Provider } from "./components/ui/provider" import { StrictMode } from 'react' import { createRoot } from 'react-dom/client' -import './index.css' +import './css/index.css' import 'react-grid-layout/css/styles.css' import 'react-resizable/css/styles.css' import App from './App.jsx'