feat - view callbacks set

This commit is contained in:
Ishaan Jaff 2024-04-08 16:07:44 -07:00
parent 7c315d25b4
commit a6723ff3a5

View file

@ -31,12 +31,12 @@ const Settings: React.FC<SettingsPageProps> = ({
return ( return (
<div className="w-full mx-4"> <div className="w-full mx-4">
<Grid numItems={1} className="gap-2 p-8 h-[75vh] w-full mt-2"> <Grid numItems={1} className="gap-2 p-8 h-[75vh] w-full mt-2">
<Card>
<Title>Settings</Title> <Card className="h-[15vh]">
<Grid numItems={2}> <Grid numItems={2} className="mt-2">
<Col> <Col>
<Subtitle>Logging Callbacks</Subtitle> <Title>Logging Callbacks</Title>
</Col> </Col>
<Col> <Col>
<div> <div>
@ -53,11 +53,13 @@ const Settings: React.FC<SettingsPageProps> = ({
</Col> </Col>
</Grid> </Grid>
<Button>Add Callback</Button> <Col>
<Button size="xs" className="mt-2">Add Callback</Button>
</Col>
</Card> </Card>
</Grid> </Grid>
</div> </div>
); );