Standardize on max-w-4xl

This commit is contained in:
Austin Chen 2022-01-12 02:13:01 -05:00
parent d121e59189
commit edb3809f1c
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ import { Col } from '../components/layout/col'
function FeedCard(props: { contract: Contract }) {
const { contract } = props
return (
<div className="card bg-white shadow-md rounded-lg divide-y divide-gray-200 py-6 px-4 max-w-3xl">
<div className="card bg-white shadow-md rounded-lg divide-y divide-gray-200 py-6 px-4 max-w-4xl">
<ContractFeed contract={contract} feedType="activity" />
</div>
)

View File

@ -84,7 +84,7 @@ export default function NewContract() {
<Page>
<Title text="Create a new prediction market" />
<div className="w-full max-w-3xl bg-gray-100 rounded-lg shadow-md px-6 py-4">
<div className="w-full max-w-4xl bg-gray-100 rounded-lg shadow-md px-6 py-4">
{/* Create a Tailwind form that takes in all the fields needed for a new contract */}
{/* When the form is submitted, create a new contract in the database */}
<form>