Reworked settings screens.

This commit is contained in:
Mike Cao 2025-05-03 00:31:37 -07:00
parent c1d301ffdc
commit 0a16ab38e4
58 changed files with 362 additions and 365 deletions

View file

@ -15,10 +15,10 @@ export function PageHeader({
children?: ReactNode;
}) {
return (
<Row justifyContent="space-between" alignItems="center" marginY="6">
<Row justifyContent="space-between" alignItems="center" paddingY="6" border="bottom">
<Row gap="3">
{icon && <Icon size="lg">{icon}</Icon>}
{title && <Heading size="2">{title}</Heading>}
{icon && <Icon>{icon}</Icon>}
{title && <Heading size="4">{title}</Heading>}
{description && <Text color="muted">{description}</Text>}
</Row>
<Row justifyContent="flex-end">{children}</Row>