diff --git a/src/App.tsx b/src/App.tsx
index 556be10..f6fffe7 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -1,6 +1,7 @@
import React from "react";
import Dashboard from "./Routes/Dashboard/Dashboard";
import Header from "./Components/Header/Header";
+import Container from "./Components/Container/Container";
import { createBrowserRouter, RouterProvider } from "react-router-dom";
import Store from "./Plugins/Redux/Store/Store";
import { Provider } from "react-redux";
@@ -17,7 +18,9 @@ export default function App() {
Ivy
diff --git a/src/components/Login/Login.tsx b/src/components/Login/Login.tsx index eaf7cb1..213121e 100644 --- a/src/components/Login/Login.tsx +++ b/src/components/Login/Login.tsx @@ -33,14 +33,7 @@ export default function Login() { onClick={login} value="Login" variant="contained" - style={{ - backgroundColor: "#9e8500", - width: 128, - height: 32, - border: "none", - padding: 8, - borderRadius: 16, - }} + style={styles.login_button} >Login
diff --git a/src/components/Sidebar/Sidebar.tsx b/src/components/Sidebar/Sidebar.tsx new file mode 100644 index 0000000..767590c --- /dev/null +++ b/src/components/Sidebar/Sidebar.tsx @@ -0,0 +1,20 @@ +import React from "react"; +import styles from "../../styles"; +import SidebarButton from "../SidebarButton/SidebarButton"; +export interface state { + minimized: { + value: boolean; + sidebar_width: string; + page_width: string; + }; +} +export default function Sidebar() { + return ( +