Reduced amount of centering on the Status page

It more closely resembles Sonarr and Radarr now.
This commit is contained in:
JayZed 2024-03-12 17:20:29 -04:00
parent fcddb8f5cd
commit daec354a5c
1 changed files with 4 additions and 4 deletions

View File

@ -38,13 +38,13 @@ interface InfoProps {
function Row(props: InfoProps): JSX.Element {
const { title, children } = props;
return (
<Grid>
<Grid.Col span={6}>
<Grid columns={10}>
<Grid.Col span={2}>
<Text size="sm" align="right" weight="bold">
{title}
</Text>
</Grid.Col>
<Grid.Col span={6}>
<Grid.Col span={3}>
<Text size="sm"> {children}</Text>
</Grid.Col>
</Grid>
@ -80,7 +80,7 @@ const InfoContainer: FunctionComponent<
<Stack>
<Divider
labelProps={{ size: "medium", weight: "bold" }}
labelPosition="center"
labelPosition="left"
label={title}
></Divider>
{children}