mirror of
https://github.com/Grasscutters/Cultivation.git
synced 2026-02-06 02:06:29 +01:00
(feat:layout) Clean up/improve layout scaffold
This commit is contained in:
@@ -9,7 +9,7 @@ import "@css/App.scss";
|
|||||||
|
|
||||||
function App() {
|
function App() {
|
||||||
return (
|
return (
|
||||||
<div className={"App"}>
|
<div class={"App"}>
|
||||||
<TopBar />
|
<TopBar />
|
||||||
|
|
||||||
<Routes>
|
<Routes>
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
function InfoBoard() {
|
function InfoBoard() {
|
||||||
return (
|
return (
|
||||||
<div className={"InfoBoard"}>
|
<div class={"InfoBoard"}>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -1,22 +1,23 @@
|
|||||||
import NewsFeed from "@components/NewsFeed.tsx";
|
import NewsFeed from "@components/NewsFeed.tsx";
|
||||||
import InfoBoard from "@components/InfoBoard.tsx";
|
import InfoBoard from "@components/InfoBoard.tsx";
|
||||||
import { Button } from "@fluentui/react-components";
|
|
||||||
|
|
||||||
function Launcher() {
|
function Launcher() {
|
||||||
return (
|
return (
|
||||||
<div className={"App_Body"}>
|
<div class={"Launcher_Announcements"}>
|
||||||
<div>
|
<div>
|
||||||
<NewsFeed />
|
<NewsFeed />
|
||||||
<InfoBoard />
|
<InfoBoard />
|
||||||
|
|
||||||
<Button>
|
|
||||||
|
|
||||||
</Button>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
|
<div class={"Launcher_Links"}>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class={"Launcher_QuickSettings"}>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user