Skip to content

Commit

Permalink
feat: fix position
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardoaerobr committed Dec 18, 2024
1 parent 9c15899 commit 31d4548
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 3 additions & 1 deletion src/pages/docs/tracks/[slug].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,10 @@ const TrackPage: NextPage<Props> = ({
{/* Adiciona a propriedade justifyContent ao Flex para alinhar o botão à direita */}
<Flex
sx={{
...styles.copyLinkContainer,
display: 'flex',
justifyContent: 'flex-end',
alignItems: 'center',
ml: 2,
}}
>
<CopyLinkButton />
Expand Down
5 changes: 3 additions & 2 deletions src/pages/faq/[slug].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,10 @@ const FaqPage: NextPage<Props> = ({
{/* Coloca o botão à direita das datas */}
<Flex
sx={{
...styles.copyLinkContainer,
ml: 2,
display: 'flex',
justifyContent: 'flex-end',
alignItems: 'center',
ml: 2,
}}
>
<CopyLinkButton />
Expand Down

0 comments on commit 31d4548

Please sign in to comment.