Tweak spacing
This commit is contained in:
parent
918229c6ef
commit
5cbbb55dba
|
@ -14,6 +14,7 @@ import { useUser } from '../hooks/use-user'
|
||||||
import { Row } from './layout/row'
|
import { Row } from './layout/row'
|
||||||
import dayjs from 'dayjs'
|
import dayjs from 'dayjs'
|
||||||
import { Linkify } from './linkify'
|
import { Linkify } from './linkify'
|
||||||
|
import clsx from 'clsx'
|
||||||
|
|
||||||
function ContractDescription(props: {
|
function ContractDescription(props: {
|
||||||
contract: Contract
|
contract: Contract
|
||||||
|
@ -102,7 +103,7 @@ export const ContractOverview = (props: {
|
||||||
}[contract.resolution || '']
|
}[contract.resolution || '']
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Col className={className}>
|
<Col className={clsx('mb-6', className)}>
|
||||||
<Col className="justify-between md:flex-row">
|
<Col className="justify-between md:flex-row">
|
||||||
<Col>
|
<Col>
|
||||||
<div className="text-3xl text-indigo-700 mb-4">
|
<div className="text-3xl text-indigo-700 mb-4">
|
||||||
|
|
|
@ -32,7 +32,7 @@ export function NavBar(props: {
|
||||||
>
|
>
|
||||||
<Row
|
<Row
|
||||||
className={clsx(
|
className={clsx(
|
||||||
'justify-between items-center mx-auto px-4',
|
'justify-between items-center mx-auto sm:px-4',
|
||||||
wide ? 'max-w-7xl' : 'max-w-4xl'
|
wide ? 'max-w-7xl' : 'max-w-4xl'
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
|
|
|
@ -97,7 +97,6 @@ function BetsSection(props: { contract: Contract; user: User | null }) {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<Spacer h={6} />
|
|
||||||
<Title text="Your bets" />
|
<Title text="Your bets" />
|
||||||
<MyBetsSummary contract={contract} bets={userBets} />
|
<MyBetsSummary contract={contract} bets={userBets} />
|
||||||
<Spacer h={6} />
|
<Spacer h={6} />
|
||||||
|
|
Loading…
Reference in New Issue
Block a user