Skip to content

Commit

Permalink
Revert "chore: fix #828 - cc @victorvalle"
Browse files Browse the repository at this point in the history
This reverts commit 649cac5.
  • Loading branch information
plhnk authored Dec 14, 2020
1 parent 0d886dd commit dcc441d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
15 changes: 7 additions & 8 deletions src/components/templates/Team/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -165,10 +165,11 @@ export default class Team extends Component {
mt: 2,
fontSize: 2,
color: 'mainL3',
variant: 'text.caps',
variant:'text.caps',
}}
>
Since {moment(teammate.startDate).format('YYYY')}
Since{' '}
{moment(teammate.startDate).format('YYYY')}
</span>
) : null}
<span sx={{ color: 'white' }}>{teammate.id}</span>
Expand Down Expand Up @@ -210,15 +211,13 @@ export default class Team extends Component {
</Container>
<Flex
sx={{
variant: 'wrapper.markdown',
flexDirection: 'column',
variant: 'wrappers.markdown',
}}
>
<Box>
<GlobalMdx>
<MDXRenderer>{post.body}</MDXRenderer>
</GlobalMdx>
</Box>
<GlobalMdx>
<MDXRenderer>{post.body}</MDXRenderer>
</GlobalMdx>
{links ? (
<Flex sx={{ width: '100%', flexDirection: 'column' }}>
<h3>Where else can we find you?</h3>
Expand Down
2 changes: 1 addition & 1 deletion src/gatsby-plugin-theme-ui/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ export default {
gap: '2rem',
},
},
wrapper: {
wrappers: {
markdown: {
px: [3, 3, null],
py: [2, 3, null],
Expand Down

0 comments on commit dcc441d

Please sign in to comment.