diff options
Diffstat (limited to 'packages/react-shared')
-rw-r--r-- | packages/react-shared/CHANGELOG.json | 8 | ||||
-rw-r--r-- | packages/react-shared/src/components/anchor_title.tsx | 19 | ||||
-rw-r--r-- | packages/react-shared/src/utils/colors.ts | 13 |
3 files changed, 20 insertions, 20 deletions
diff --git a/packages/react-shared/CHANGELOG.json b/packages/react-shared/CHANGELOG.json index 1ef6bc2cd..5227bbf72 100644 --- a/packages/react-shared/CHANGELOG.json +++ b/packages/react-shared/CHANGELOG.json @@ -9,6 +9,14 @@ ] }, { + "version": "0.2.0", + "changes": [ + { + "note": "Removed portal specific colors" + } + ] + }, + { "timestamp": 1525477860, "version": "0.1.6", "changes": [ diff --git a/packages/react-shared/src/components/anchor_title.tsx b/packages/react-shared/src/components/anchor_title.tsx index 89fde23cf..473b994bf 100644 --- a/packages/react-shared/src/components/anchor_title.tsx +++ b/packages/react-shared/src/components/anchor_title.tsx @@ -27,12 +27,6 @@ const styles: Styles = { transform: 'rotate(45deg)', cursor: 'pointer', }, - headers: { - WebkitMarginStart: 0, - WebkitMarginEnd: 0, - fontWeight: 'bold', - display: 'block', - }, h1: { fontSize: '1.8em', }, @@ -58,7 +52,18 @@ export class AnchorTitle extends React.Component<AnchorTitleProps, AnchorTitleSt opacity = this.state.isHovering ? 0.6 : 1; } return ( - <div className="relative flex" style={{ ...styles[this.props.headerSize], ...styles.headers }}> + <div + className="relative flex" + style={ + { + ...styles[this.props.headerSize], + fontWeight: 'bold', + display: 'block', + WebkitMarginStart: 0, + WebkitMarginEnd: 0, + } as any + } + > <div className="inline-block" style={{ paddingRight: 4 }}> {this.props.title} </div> diff --git a/packages/react-shared/src/utils/colors.ts b/packages/react-shared/src/utils/colors.ts index 4617fa5dc..71d92c290 100644 --- a/packages/react-shared/src/utils/colors.ts +++ b/packages/react-shared/src/utils/colors.ts @@ -48,20 +48,7 @@ const baseColors = { darkYellow: '#caca03', }; -const appColors = { - // wallet specific colors - walletBoxShadow: 'rgba(56, 59, 137, 0.2)', - walletBorder: '#ededee', - walletDefaultItemBackground: '#fbfbfc', - walletFocusedItemBackground: '#f0f1f4', - allowanceToggleShadow: 'rgba(0, 0, 0, 0)', - allowanceToggleOffTrack: '#adadad', - allowanceToggleOnTrack: baseColors.mediumBlue, - wrapEtherConfirmationButton: baseColors.mediumBlue, -}; - export const colors = { ...materialUiColors, ...baseColors, - ...appColors, }; |