Skip to content

Commit

Permalink
Fixed the Mobile UI for DAO Creator
Browse files Browse the repository at this point in the history
  • Loading branch information
ashutoshpw committed Jan 13, 2025
1 parent a2fa4c9 commit 708fb1e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/modules/creator/steps/Template.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -139,11 +139,15 @@ export const Template = (): JSX.Element => {
setError(false)
setTemplate(templateValue)
}

console.log({ isMobileSmall })
return (
<Box>
<TitleBlock title={"DAO Creator"} description={"Create an organization by picking a template below."} />
<Grid container justifyContent={isMobileSmall ? "center" : "space-between"} direction="row">
<Grid
container
justifyContent={isMobileSmall ? "center" : "space-between"}
direction={isMobileSmall ? "column" : "row"}
>
{isEtherLink ? (
<Tooltip title="Full DAO is available on Tezos Networks">
<LambdaCustomBoxFullDao
Expand Down

0 comments on commit 708fb1e

Please sign in to comment.