Skip to content

Commit

Permalink
feat: Adjust alignment between icon and link text in the CartesiScan …
Browse files Browse the repository at this point in the history
…section.
  • Loading branch information
brunomenezes committed Nov 26, 2023
1 parent 6181791 commit d7f40a5
Showing 1 changed file with 37 additions and 4 deletions.
41 changes: 37 additions & 4 deletions apps/web/src/components/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -107,22 +107,55 @@ const Footer: FC = () => {
CartesiScan
</Text>
<List>
<List.Item icon={<TbBug size={20} />}>
<List.Item
icon={
<Flex>
<TbBug size={20} />
</Flex>
}
>
<FooterLink href="https://github.com/cartesi/rollups-explorer/issues/new?assignees=&labels=Type%3A+Bug%2CStatus%3A+Needs+triage&projects=&template=2-bug.md&title=">
Report a bug
</FooterLink>
</List.Item>
<List.Item icon={<TbMessage2Code size={20} />}>
<List.Item
icon={
<Flex>
<TbMessage2Code
size={20}
style={{ display: "flex" }}
/>
</Flex>
}
>
<FooterLink href="https://github.com/cartesi/rollups-explorer/issues/new?assignees=&labels=Type%3A+Feature%2CStatus%3A+Needs+triage&projects=&template=1-feature.md&title=">
Feature request
</FooterLink>
</List.Item>
<List.Item icon={<TbBrandGithub size={20} />}>
<List.Item
icon={
<Flex>
<TbBrandGithub
size={20}
style={{ display: "flex" }}
/>
</Flex>
}
>
<FooterLink href="https://github.com/cartesi/rollups-explorer/blob/main/CONTRIBUTING.md">
Contribute
</FooterLink>
</List.Item>
<List.Item icon={<TbBrandDiscord size={20} />}>
<List.Item
icon={
<Flex>
<TbBrandDiscord
size={20}
style={{ display: "flex" }}
/>
</Flex>
}
>
<FooterLink href="https://discord.com/invite/pfXMwXDDfW">
Discord
</FooterLink>
Expand Down

0 comments on commit d7f40a5

Please sign in to comment.