Hotfix to allow pages to scroll

This commit is contained in:
Keannu Christian Bernasol 2023-02-15 00:15:42 +08:00
parent 534993efc2
commit 32e7ab8830
3 changed files with 14 additions and 14 deletions

View file

@ -5,12 +5,10 @@ import styles from "../../styles";
export default function Dashboard() {
return (
<div style={styles.background}>
<div style={styles.container}>
<AppLogo size={64} color="#6f9b78" />
<p style={styles.text}>Ivy - Inventory Manager</p>
<p style={styles.text}>Welcome to the Dashboard</p>
</div>
<div style={styles.container}>
<AppLogo size={64} color="#6f9b78" />
<p style={styles.text}>Ivy - Inventory Manager</p>
<p style={styles.text}>Welcome to the Dashboard</p>
</div>
);
}