Skip to content

Commit

Permalink
feat: ajusta estilos de listas e centraliza exibição do guia de uso
Browse files Browse the repository at this point in the history
  • Loading branch information
AldemirLucas committed Jan 22, 2025
1 parent 8a2d93d commit 032e236
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions next/components/organisms/DatasetUserGuide.js
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ export const mdxComponents = {
/>
),
ol: (props) => <OrderedList {...props} />,
ul: (props) => <UnorderedList {...props} margin="4px 0 4px 20px"/>,
ul: (props) => <UnorderedList margin="8px 0 8px 20px" {...props} />,
li: (props) => (
<ListItem
fontFamily="Roboto"
Expand All @@ -290,7 +290,7 @@ export const mdxComponents = {
lineHeight="20px"
letterSpacing="0.1px"
color="#464A51"
margin={0}
margin="0 0 4px 0"
{...props}
/>
),
Expand Down Expand Up @@ -405,7 +405,7 @@ export default function DatasetUserGuide({ data, locale = "pt", slug }) {
>
{mdxSource && <MDXRemote {...mdxSource} components={mdxComponents} />}

<Box display={hasGuide ? "flex" : "none"} id="hotjarSurveyGuiaDeUso" marginTop="40px"/>
<Box display={hasGuide ? "flex" : "none"} justifyContent="center" id="hotjarSurveyGuiaDeUso" marginTop="40px"/>

<Box
marginTop="40px"
Expand Down

0 comments on commit 032e236

Please sign in to comment.