diff options
author | Brandon Millman <brandon@0xproject.com> | 2018-05-19 06:38:04 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-19 06:38:04 +0800 |
commit | c70540e7f4ead1f25d1436de3b4dcda06c3e1e68 (patch) | |
tree | 03c9c8b6cc1c66b462b7009edb470e340b17a46f /packages/react-shared | |
parent | 85020c74cf8622d131b21f82a8027d437717712e (diff) | |
parent | e291146443e2dca839e9ee58f823dde3ab71093e (diff) | |
download | dexon-sol-tools-c70540e7f4ead1f25d1436de3b4dcda06c3e1e68.tar dexon-sol-tools-c70540e7f4ead1f25d1436de3b4dcda06c3e1e68.tar.gz dexon-sol-tools-c70540e7f4ead1f25d1436de3b4dcda06c3e1e68.tar.bz2 dexon-sol-tools-c70540e7f4ead1f25d1436de3b4dcda06c3e1e68.tar.lz dexon-sol-tools-c70540e7f4ead1f25d1436de3b4dcda06c3e1e68.tar.xz dexon-sol-tools-c70540e7f4ead1f25d1436de3b4dcda06c3e1e68.tar.zst dexon-sol-tools-c70540e7f4ead1f25d1436de3b4dcda06c3e1e68.zip |
Merge pull request #598 from 0xProject/feature/website/mobile-optimize
Mobile optimize the portal layout
Diffstat (limited to 'packages/react-shared')
-rw-r--r-- | packages/react-shared/CHANGELOG.json | 8 | ||||
-rw-r--r-- | packages/react-shared/src/utils/colors.ts | 13 |
2 files changed, 8 insertions, 13 deletions
diff --git a/packages/react-shared/CHANGELOG.json b/packages/react-shared/CHANGELOG.json index 1095c78ee..3e03f81f1 100644 --- a/packages/react-shared/CHANGELOG.json +++ b/packages/react-shared/CHANGELOG.json @@ -1,5 +1,13 @@ [ { + "version": "0.2.0", + "changes": [ + { + "note": "Removed portal specific colors" + } + ] + }, + { "timestamp": 1525477860, "version": "0.1.6", "changes": [ 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, }; |