Skip to content

Commit

Permalink
Move app styles to root
Browse files Browse the repository at this point in the history
  • Loading branch information
tristanhollman committed Feb 6, 2024
1 parent a055f6a commit 7c80cd1
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 5 deletions.
1 change: 0 additions & 1 deletion src/components/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
import { ReactQueryDevtools } from "@tanstack/react-query-devtools";
import { useMemo } from "react";
import { useDarkMode } from "usehooks-ts";
import "./App.less";
import { ConfigView } from "./ConfigView/ConfigView";
import { StreakView } from "./StreakView/StreakView";

Expand Down
1 change: 1 addition & 0 deletions src/main.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import React from "react";
import ReactDOM from "react-dom/client";
import { App } from "./components/App.tsx";
import "./styles.less";

ReactDOM.createRoot(document.getElementById("root")!).render(
<React.StrictMode>
Expand Down
4 changes: 0 additions & 4 deletions src/components/App.less → src/styles.less
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,3 @@
padding: 2rem;
text-align: center;
}

.card {
padding: 2em;
}

0 comments on commit 7c80cd1

Please sign in to comment.