Standardize on max-w-4xl
This commit is contained in:
parent
d121e59189
commit
edb3809f1c
|
@ -11,7 +11,7 @@ import { Col } from '../components/layout/col'
|
||||||
function FeedCard(props: { contract: Contract }) {
|
function FeedCard(props: { contract: Contract }) {
|
||||||
const { contract } = props
|
const { contract } = props
|
||||||
return (
|
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" />
|
<ContractFeed contract={contract} feedType="activity" />
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
|
|
|
@ -84,7 +84,7 @@ export default function NewContract() {
|
||||||
<Page>
|
<Page>
|
||||||
<Title text="Create a new prediction market" />
|
<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 */}
|
{/* 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 */}
|
{/* When the form is submitted, create a new contract in the database */}
|
||||||
<form>
|
<form>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user