1
0
mirror of https://github.com/stonith404/pingvin-share.git synced 2024-07-04 00:10:17 +02:00

fix: setup wizard table doesn't take full width

This commit is contained in:
Elias Schneider 2022-12-10 18:45:53 +01:00
parent 0c10dc674f
commit 9798e26872

View File

@ -1,4 +1,4 @@
import { Button, Stack, Text, Title } from "@mantine/core";
import { Box, Button, Stack, Text, Title } from "@mantine/core";
import { useRouter } from "next/router";
import { useState } from "react";
import AdminConfigTable from "../../components/admin/AdminConfigTable";
@ -28,7 +28,9 @@ const Setup = () => {
<Logo height={80} width={80} />
<Title order={2}>Welcome to Pingvin Share</Title>
<Text>Let's customize Pingvin Share for you! </Text>
<AdminConfigTable />
<Box style={{ width: "100%" }}>
<AdminConfigTable />
</Box>
<Button
loading={isLoading}
onClick={async () => {