style: spacing

This commit is contained in:
iCrawl
2022-08-23 04:11:12 +02:00
parent af295acedc
commit ac3bc6a2db
3 changed files with 4 additions and 4 deletions

View File

@@ -87,7 +87,7 @@ export default function VersionsRoute(props: Partial<VersionProps> & { error?: s
return props.error ? (
<Box sx={{ display: 'flex', maxWidth: '100%', height: '100%' }}>{props.error}</Box>
) : (
<Container pt={96} size="xs">
<Container pt={128} size="xs">
<Stack sx={{ flexGrow: 1 }}>
<Title order={2} ml="xs">
Select a version:

View File

@@ -32,7 +32,7 @@ export default function PackagesRoute() {
const packages = ['builders', 'collection', 'proxy', 'rest', 'voice', 'ws'];
return (
<Container pt={96} size="xs">
<Container pt={128} size="xs">
<Stack sx={{ flexGrow: 1 }}>
<Title order={2} ml="xs">
Select a package:

View File

@@ -8,8 +8,8 @@ const useStyles = createStyles((theme) => ({
display: 'flex',
justifyContent: 'space-between',
alignItems: 'center',
paddingTop: theme.spacing.xl * 4,
paddingBottom: theme.spacing.xl * 4,
paddingTop: theme.spacing.xl * 6,
paddingBottom: theme.spacing.xl * 2,
[theme.fn.smallerThan('md')]: {
flexDirection: 'column',