Skip to content

Commit

Permalink
fix(app): remove unnecessary padding (#15067)
Browse files Browse the repository at this point in the history
* fix(app): remove unnecessary padding
  • Loading branch information
koji committed May 2, 2024
1 parent 2c5669b commit 7aa5805
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions app/src/pages/ProtocolDetails/Parameters.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,12 @@ const Table = styled('table')`
font-size: ${TYPOGRAPHY.fontSize22};
width: 100%;
border-spacing: 0 ${SPACING.spacing8};
margin: ${SPACING.spacing16} 0;
text-align: ${TYPOGRAPHY.textAlignLeft};
`
const TableHeader = styled('th')`
font-size: ${TYPOGRAPHY.fontSize20};
font-weight: ${TYPOGRAPHY.fontWeightSemiBold};
padding: ${SPACING.spacing4};
padding: 0 ${SPACING.spacing4} 0 ${SPACING.spacing4};
color: ${COLORS.grey60};
`

Expand Down
2 changes: 1 addition & 1 deletion app/src/pages/ProtocolDetails/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ const ProtocolSectionContent = ({
}
return (
<Flex
marginTop={SPACING.spacing32}
paddingTop={SPACING.spacing32}
justifyContent={currentOption === 'Deck' ? JUSTIFY_CENTER : undefined}
>
{protocolSection}
Expand Down

0 comments on commit 7aa5805

Please sign in to comment.