Skip to content

Commit

Permalink
chore: update CTA align
Browse files Browse the repository at this point in the history
  • Loading branch information
thekidnamedkd committed Nov 6, 2024
1 parent 072b9d1 commit 2377773
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions src/containers/daoExplorer/daoExplorer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -169,11 +169,14 @@ export const DaoExplorer = () => {
'flex w-full justify-center md:w-fit': isConnected,
});

const buttonGroupContainerClassName = classNames('shrink-0 flex gap-x-3', {
'flex md:w-fit': !isConnected && filters.quickFilter === 'featuredDaos',
'flex gap-x-3 w-full md:w-fit justify-between':
isConnected && filters.quickFilter !== 'featuredDaos',
});
const buttonGroupContainerClassName = classNames(
'shrink-0 flex gap-x-3 justify-end',
{
'flex md:w-fit': !isConnected && filters.quickFilter === 'featuredDaos',
'flex gap-x-3 w-full md:w-fit justify-between':
isConnected && filters.quickFilter === 'allDaos',
}
);

/*************************************************
* Render *
Expand Down

0 comments on commit 2377773

Please sign in to comment.