Skip to content

Commit 96b41c9

Browse files
kien-ngoMananTank
authored andcommitted
Update
1 parent 6a4b776 commit 96b41c9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

apps/dashboard/src/contract-ui/tabs/nfts/components/supply-cards.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export const SupplyCards: React.FC<SupplyCardsProps> = ({ contract }) => {
2323
).toString();
2424

2525
return (
26-
<div className="flex flex-row gap-3 md:gap-6">
26+
<div className="flex flex-col gap-3 md:flex-row md:gap-6">
2727
<Card as={Stat}>
2828
<StatLabel mb={{ base: 1, md: 0 }}>Total Supply</StatLabel>
2929
<Skeleton isLoaded={totalSupplyQuery.isSuccess}>

apps/dashboard/src/contract-ui/tabs/nfts/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ export const ContractNFTPage: React.FC<NftOverviewPageProps> = ({
5353

5454
return (
5555
<div className="flex flex-col gap-6">
56-
<div className="flex flex-row items-center justify-between">
56+
<div className="flex flex-col items-center gap-3 md:flex-row md:justify-between">
5757
<h2 className="font-bold text-xl">Contract NFTs</h2>
58-
<div className="flex flex-col gap-2 md:flex-row">
58+
<div className="grid grid-cols-2 gap-2 md:flex md:flex-row">
5959
{isRevealable && <NFTRevealButton contract={contract} />}
6060
{isERC721ClaimToSupported && (
6161
/**

0 commit comments

Comments
 (0)