From 6fd11bb6f539a66d25a94f6c3dc60b450a91d977 Mon Sep 17 00:00:00 2001 From: KingRainbow44 Date: Wed, 29 Nov 2023 22:17:11 -0500 Subject: [PATCH] (feat:layout) Clean up/improve layout scaffold --- src/ui/App.tsx | 2 +- src/ui/components/InfoBoard.tsx | 2 +- src/ui/layout/Launcher.tsx | 13 +++++++------ 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/src/ui/App.tsx b/src/ui/App.tsx index f5f380d..3c3876d 100644 --- a/src/ui/App.tsx +++ b/src/ui/App.tsx @@ -9,7 +9,7 @@ import "@css/App.scss"; function App() { return ( -
+
diff --git a/src/ui/components/InfoBoard.tsx b/src/ui/components/InfoBoard.tsx index 209552e..a258c0d 100644 --- a/src/ui/components/InfoBoard.tsx +++ b/src/ui/components/InfoBoard.tsx @@ -1,6 +1,6 @@ function InfoBoard() { return ( -
+
); diff --git a/src/ui/layout/Launcher.tsx b/src/ui/layout/Launcher.tsx index 86728c6..3edc1b1 100644 --- a/src/ui/layout/Launcher.tsx +++ b/src/ui/layout/Launcher.tsx @@ -1,21 +1,22 @@ import NewsFeed from "@components/NewsFeed.tsx"; import InfoBoard from "@components/InfoBoard.tsx"; -import { Button } from "@fluentui/react-components"; function Launcher() { return ( -
+
- -
+
+
+ +
+ +
);