diff --git a/src/components/Common/List/index.tsx b/src/components/Common/List/index.tsx index 1f723c652..689fba5cb 100644 --- a/src/components/Common/List/index.tsx +++ b/src/components/Common/List/index.tsx @@ -7,11 +7,13 @@ interface ListItemProps { const ListItem: React.FC = ({ title, children }) => { return ( -
-
{title}
-
- {children} -
+
+
+
{title}
+
+ {children} +
+
); }; diff --git a/src/styles/globals.css b/src/styles/globals.css index 7dcaae94d..f6ebfefbb 100644 --- a/src/styles/globals.css +++ b/src/styles/globals.css @@ -50,7 +50,7 @@ body { } .form-row { - @apply mt-6 sm:mt-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:items-start; + @apply max-w-6xl mt-6 sm:mt-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:items-start; } .form-input {