diff --git a/web/components/pageComponents/ConnectionsPage/NewConnection/index.module.css b/web/components/pageComponents/ConnectionsPage/NewConnection/index.module.css
index 9192b7fa..65841a00 100644
--- a/web/components/pageComponents/ConnectionsPage/NewConnection/index.module.css
+++ b/web/components/pageComponents/ConnectionsPage/NewConnection/index.module.css
@@ -7,11 +7,15 @@
}
.whiteContainer {
- @apply max-w-xl w-full border rounded-lg py-10 px-16 bg-white mx-auto;
+ @apply max-w-xl w-full border rounded-lg py-10 bg-white mx-auto;
}
-.nameInput {
- @apply pb-4 mb-8 border-b;
+.section {
+ @apply px-14 py-4;
+}
+
+.middle {
+ @apply border-y pt-8;
}
.or {
diff --git a/web/components/pageComponents/ConnectionsPage/NewConnection/index.tsx b/web/components/pageComponents/ConnectionsPage/NewConnection/index.tsx
index 3e8af3fd..b8b4759c 100644
--- a/web/components/pageComponents/ConnectionsPage/NewConnection/index.tsx
+++ b/web/components/pageComponents/ConnectionsPage/NewConnection/index.tsx
@@ -5,6 +5,7 @@ import FormInput from "@components/FormInput";
import Loader from "@components/Loader";
import { FaCaretDown } from "@react-icons/all-files/fa/FaCaretDown";
import { FaCaretUp } from "@react-icons/all-files/fa/FaCaretUp";
+import cx from "classnames";
import css from "./index.module.css";
import useConfig from "./useConfig";
@@ -18,7 +19,6 @@ export default function NewConnection(props: Props) {
const canSubmit =
state.name && (state.connectionUrl || (state.host && state.username));
const isDocker = location.origin === "http://localhost:3000";
- console.log(location);
const onCancel = props.canGoBack
? () => {
@@ -31,100 +31,113 @@ export default function NewConnection(props: Props) {