From b419300ea2789bd68fdeb1574fa23106647e2c44 Mon Sep 17 00:00:00 2001 From: Michael Quigley Date: Fri, 20 Dec 2024 13:01:22 -0500 Subject: [PATCH] moved styling components (#724) --- ui100/src/Visualizer.tsx | 2 +- ui100/src/main.tsx | 4 ++-- ui100/src/{ => styling}/index.css | 0 ui100/src/{ => styling}/react-flow.css | 0 ui100/src/{model => styling}/theme.ts | 0 5 files changed, 3 insertions(+), 3 deletions(-) rename ui100/src/{ => styling}/index.css (100%) rename ui100/src/{ => styling}/react-flow.css (100%) rename ui100/src/{model => styling}/theme.ts (100%) diff --git a/ui100/src/Visualizer.tsx b/ui100/src/Visualizer.tsx index 256437db..5629e5f6 100644 --- a/ui100/src/Visualizer.tsx +++ b/ui100/src/Visualizer.tsx @@ -1,5 +1,5 @@ import "@xyflow/react/dist/style.css"; -import "./react-flow.css"; +import "./styling/react-flow.css"; import { Background, Controls, diff --git a/ui100/src/main.tsx b/ui100/src/main.tsx index 4d98fcf1..fa92c2ea 100644 --- a/ui100/src/main.tsx +++ b/ui100/src/main.tsx @@ -1,8 +1,8 @@ -import "./index.css"; +import "./styling/index.css"; import {StrictMode} from "react"; import {createRoot} from "react-dom/client"; import {ThemeProvider} from "@mui/material"; -import {theme} from "./model/theme.ts"; +import {theme} from "./styling/theme.ts"; import App from "./App.tsx"; createRoot(document.getElementById('root')!).render( diff --git a/ui100/src/index.css b/ui100/src/styling/index.css similarity index 100% rename from ui100/src/index.css rename to ui100/src/styling/index.css diff --git a/ui100/src/react-flow.css b/ui100/src/styling/react-flow.css similarity index 100% rename from ui100/src/react-flow.css rename to ui100/src/styling/react-flow.css diff --git a/ui100/src/model/theme.ts b/ui100/src/styling/theme.ts similarity index 100% rename from ui100/src/model/theme.ts rename to ui100/src/styling/theme.ts