Add box shadows to all cards
This commit is contained in:
parent
5457cb39b3
commit
74c314d95c
|
@ -50,7 +50,10 @@ export function BetPanel(props: { contract: Contract; className?: string }) {
|
|||
|
||||
return (
|
||||
<Col
|
||||
className={clsx('bg-gray-200 p-6 rounded w-full md:w-auto', className)}
|
||||
className={clsx(
|
||||
'bg-gray-200 shadow-xl p-6 rounded w-full md:w-auto',
|
||||
className
|
||||
)}
|
||||
>
|
||||
<div className="p-2 font-medium">Pick outcome</div>
|
||||
<YesNoSelector
|
||||
|
|
|
@ -52,7 +52,7 @@ function ContractCard(props: { contract: Contract }) {
|
|||
export function ContractsList(props: { contracts: Contract[] }) {
|
||||
const { contracts } = props
|
||||
return (
|
||||
<div className="bg-gray-200 shadow overflow-hidden sm:rounded-md max-w-4xl w-full">
|
||||
<div className="bg-gray-200 shadow-xl overflow-hidden sm:rounded-md max-w-4xl w-full">
|
||||
<ul role="list" className="divide-y divide-gray-300">
|
||||
{contracts.map((contract) => (
|
||||
<ContractCard contract={contract} key={contract.id} />
|
||||
|
|
Loading…
Reference in New Issue
Block a user