diff --git a/resources/scripts/components/admin/AdminBox.tsx b/resources/scripts/components/admin/AdminBox.tsx
index 847fc7076..da0543b7e 100644
--- a/resources/scripts/components/admin/AdminBox.tsx
+++ b/resources/scripts/components/admin/AdminBox.tsx
@@ -9,15 +9,15 @@ interface Props {
isLoading?: boolean;
title: string | React.ReactNode;
className?: string;
- padding?: boolean;
+ noPadding?: boolean;
children: React.ReactNode;
button?: React.ReactNode;
}
-const AdminBox = ({ icon, title, className, isLoading, children, button }: Props) => (
+const AdminBox = ({ icon, title, className, isLoading, children, button, noPadding }: Props) => (
-
+
{typeof title === 'string' ?
{icon && }{title}
@@ -27,7 +27,7 @@ const AdminBox = ({ icon, title, className, isLoading, children, button }: Props
}
{button}
-
diff --git a/resources/scripts/components/admin/Sidebar.tsx b/resources/scripts/components/admin/Sidebar.tsx
index b1efeb578..b5ab0a047 100644
--- a/resources/scripts/components/admin/Sidebar.tsx
+++ b/resources/scripts/components/admin/Sidebar.tsx
@@ -61,11 +61,11 @@ const Sidebar = styled.div<{ $collapsed?: boolean }>`
}
${Wrapper} {
- ${tw`px-5`};
+ ${tw`px-5`};
- & > a {
- ${tw`justify-center px-0`};
- }
+ & > a {
+ ${tw`justify-center px-0`};
+ }
}
& > a {
diff --git a/resources/scripts/components/admin/nests/eggs/EggInstallContainer.tsx b/resources/scripts/components/admin/nests/eggs/EggInstallContainer.tsx
index 878f682a7..1ea32071b 100644
--- a/resources/scripts/components/admin/nests/eggs/EggInstallContainer.tsx
+++ b/resources/scripts/components/admin/nests/eggs/EggInstallContainer.tsx
@@ -50,7 +50,7 @@ export default function EggInstallContainer ({ egg }: { egg: Egg }) {
}}
>
{({ isSubmitting, isValid }) => (
-
+
diff --git a/resources/scripts/components/admin/servers/ServerSettingsContainer.tsx b/resources/scripts/components/admin/servers/ServerSettingsContainer.tsx
index bc8d9ce4f..3da8115c2 100644
--- a/resources/scripts/components/admin/servers/ServerSettingsContainer.tsx
+++ b/resources/scripts/components/admin/servers/ServerSettingsContainer.tsx
@@ -257,18 +257,16 @@ export default function ServerSettingsContainer2 ({ server }: { server: Server }
{({ isSubmitting, isValid }) => (