utils#typography JavaScript Examples

The following examples show how to use utils#typography. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: styles.js    From bank-client with MIT License 5 votes vote down vote up
StyledBillAmountMoney = styled.span`
  font-weight: ${typography.fontWeightBold};
`
Example #2
Source File: styles.js    From bank-client with MIT License 5 votes vote down vote up
StyledNameWrapper = styled.span`
  color: ${colors.primaryBlue};
  font-weight: ${typography.fontWeightBold};
`
Example #3
Source File: styles.js    From bank-client with MIT License 5 votes vote down vote up
StyledListItemAmount = styled.span`
  font-weight: ${typography.fontWeightBold};
`
Example #4
Source File: styles.js    From bank-client with MIT License 5 votes vote down vote up
StyledSubject = styled.div`
  font-weight: ${typography.fontWeightBold};
`
Example #5
Source File: styles.js    From bank-client with MIT License 5 votes vote down vote up
StyledLabel = styled.span`
  font-weight: ${typography.fontWeightBold};
`
Example #6
Source File: styles.js    From bank-client with MIT License 5 votes vote down vote up
StyledWidgetContentTypographyMain = styled.div`
  font-size: 25px;
  font-weight: ${typography.fontWeightMedium};
`
Example #7
Source File: styles.js    From bank-client with MIT License 5 votes vote down vote up
StyledWidgetContentTypographyMainUnit = styled.span`
  font-size: 16px;
  margin-left: 5px;
  font-weight: ${typography.fontWeightLight};
`
Example #8
Source File: styles.js    From bank-client with MIT License 5 votes vote down vote up
StyledWarning = styled.div`
  display: flex;
  align-items: center;
  font-weight: ${typography.fontWeightMedium};
  margin: 20px 0;
  font-size: 14px;
`
Example #9
Source File: styles.js    From bank-client with MIT License 5 votes vote down vote up
StyledButton = styled(Button)`
  font-weight: ${typography.fontWeightMedium};
  padding: 0;
  color: inherit;
  height: auto;
  font-size: inherit;
`
Example #10
Source File: styles.js    From bank-client with MIT License 5 votes vote down vote up
StyledRedirectToggle = styled.div`
  margin: 20px auto 30px;
  text-align: left;
  font-weight: ${typography.fontWeightBold};

  padding: 0 15px;
  max-width: 560px;
`
Example #11
Source File: styles.js    From bank-client with MIT License 5 votes vote down vote up
StyledButton = styled(Button)`
  font-weight: ${typography.fontWeightBold};
  color: ${colors.primaryBlue};
  padding: 0;
  height: auto;
`
Example #12
Source File: styles.js    From bank-client with MIT License 5 votes vote down vote up
StyledPinCodeWrapper = styled.span`
  font-weight: ${typography.fontWeightBold};
  color: ${colors.primaryBlue};
`