From a126c37ed38a1fbfa63ba20e6c3fbf54aaea6971 Mon Sep 17 00:00:00 2001 From: Abi Raja Date: Wed, 15 Nov 2023 16:32:57 -0500 Subject: [PATCH] improve sidebar visual style --- frontend/src/App.tsx | 33 +++++++++++++++--------- frontend/src/components/ui/separator.tsx | 29 +++++++++++++++++++++ 2 files changed, 50 insertions(+), 12 deletions(-) create mode 100644 frontend/src/components/ui/separator.tsx diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index a97ef14..81a2dc7 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -8,6 +8,7 @@ import classNames from "classnames"; import { FaDownload, FaUndo } from "react-icons/fa"; import { Button } from "@/components/ui/button"; import { Textarea } from "@/components/ui/textarea"; +import { Separator } from "@/components/ui/separator"; function App() { const [appState, setAppState] = useState<"INITIAL" | "CODING" | "CODE_READY">( @@ -101,18 +102,24 @@ function App() { )} -
-
- Reference +
+
+
+ Reference +
+
+ Original Screenshot +
+

Console @@ -128,11 +135,13 @@ function App() {

+ + {appState === "CODE_READY" && (