mirror of
https://github.com/stonith404/pingvin-share.git
synced 2025-01-29 01:28:59 -05:00
fix: setup wizard table doesn't take full width
This commit is contained in:
parent
0c10dc674f
commit
9798e26872
1 changed files with 4 additions and 2 deletions
|
@ -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 { useRouter } from "next/router";
|
||||||
import { useState } from "react";
|
import { useState } from "react";
|
||||||
import AdminConfigTable from "../../components/admin/AdminConfigTable";
|
import AdminConfigTable from "../../components/admin/AdminConfigTable";
|
||||||
|
@ -28,7 +28,9 @@ const Setup = () => {
|
||||||
<Logo height={80} width={80} />
|
<Logo height={80} width={80} />
|
||||||
<Title order={2}>Welcome to Pingvin Share</Title>
|
<Title order={2}>Welcome to Pingvin Share</Title>
|
||||||
<Text>Let's customize Pingvin Share for you! </Text>
|
<Text>Let's customize Pingvin Share for you! </Text>
|
||||||
<AdminConfigTable />
|
<Box style={{ width: "100%" }}>
|
||||||
|
<AdminConfigTable />
|
||||||
|
</Box>
|
||||||
<Button
|
<Button
|
||||||
loading={isLoading}
|
loading={isLoading}
|
||||||
onClick={async () => {
|
onClick={async () => {
|
||||||
|
|
Loading…
Add table
Reference in a new issue