Created initial logs page and fixed flex_row vertical alignment

This commit is contained in:
Keannu Christian Bernasol 2023-02-24 17:50:39 +08:00
parent e33e2169a0
commit 94fa62f231
3 changed files with 24 additions and 1 deletions

14
src/Routes/Logs/Logs.tsx Normal file
View file

@ -0,0 +1,14 @@
import * as React from "react";
import LogsIcon from "../../Components/Icons/LogsIcon/LogsIcon";
import styles from "../../styles";
export default function Logs() {
return (
<div style={{ margin: 32, height: "100%" }}>
<div style={styles.flex_row}>
<LogsIcon size={8} color="white" />
<h1 style={styles.text_large}>Logs</h1>
</div>
</div>
);
}