Remove Digital Bitbox from account view (#804)

* remove unsupported digital bitbox from account view

* Fix sizing.
This commit is contained in:
Daniel Ternyak 2018-01-13 01:50:37 -06:00 committed by GitHub
parent 31e22af904
commit 75871abf5c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -98,7 +98,7 @@ const WEB3_TYPES = {
const WEB3_TYPE: string | false =
(window as any).web3 && (window as any).web3.currentProvider.constructor.name;
const SECURE_WALLETS = ['web3', 'ledger-nano-s', 'trezor', 'digital-bitbox'];
const SECURE_WALLETS = ['web3', 'ledger-nano-s', 'trezor'];
const INSECURE_WALLETS = ['private-key', 'keystore-file', 'mnemonic-phrase'];
export class WalletDecrypt extends Component<Props, State> {

View File

@ -27,7 +27,7 @@
flex: 1;
height: 155px;
max-width: 230px;
min-width: 300px;
min-width: 200px;
padding: 25px 15px;
margin: 0 $space-md $space;