Skip to content
This repository has been archived by the owner on May 19, 2020. It is now read-only.

Commit

Permalink
style(components): adjust icon padding - I273
Browse files Browse the repository at this point in the history
Signed-off-by: irmerk <[email protected]>
  • Loading branch information
jolanglinais committed Feb 5, 2020
1 parent c35ad52 commit 4ca55ae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/ContractEditor/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,10 @@ ContractEditor.propTypes = {
BODY_FONT: PropTypes.string,
CLAUSE_BACKGROUND: PropTypes.string,
CLAUSE_BORDER: PropTypes.string,
CLAUSE_DELETE: PropTypes.string,
CLAUSE_ICONS: PropTypes.string,
CLAUSE_DELETE_FUNCTION: PropTypes.func,
CLAUSE_EDIT_FUNCTION: PropTypes.func,
CLAUSE_TEST_FUNCTION: PropTypes.func,
HEADER_FONT: PropTypes.string,
HEADER_TITLE: PropTypes.string,
}).isRequired,
Expand Down
2 changes: 1 addition & 1 deletion src/components/styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export const ClauseIcon = styled.svg`
const IconWrapper = styled.div`
visibility: ${props => (props.currentHover ? 'visible' : 'hidden')};
background: linear-gradient(180deg, #FFFFFF 0%, ${props => props.iconBg || '#ECF0FA'} 100%);
padding: 2px;
padding: 4px;
place-self: center;
transition-duration: 0.5s;
`;
Expand Down

0 comments on commit 4ca55ae

Please sign in to comment.