fix(ui): Limit max width of forms & lists (#845)

This commit is contained in:
TheCatLady
2021-02-04 19:52:58 -05:00
committed by GitHub
parent 026795d4c9
commit b9d14a9fd0
2 changed files with 8 additions and 6 deletions

View File

@@ -7,11 +7,13 @@ interface ListItemProps {
const ListItem: React.FC<ListItemProps> = ({ title, children }) => {
return (
<div className="py-4 sm:grid sm:grid-cols-3 sm:gap-4">
<dt className="block text-sm font-medium text-gray-400">{title}</dt>
<dd className="flex text-sm text-white sm:mt-0 sm:col-span-2">
<span className="flex-grow">{children}</span>
</dd>
<div>
<div className="max-w-6xl py-4 sm:grid sm:grid-cols-3 sm:gap-4">
<dt className="block text-sm font-medium text-gray-400">{title}</dt>
<dd className="flex text-sm text-white sm:mt-0 sm:col-span-2">
<span className="flex-grow">{children}</span>
</dd>
</div>
</div>
);
};