Browse Source

unlock asset chains spv

v0.25
pbca26 7 years ago
parent
commit
379d14110d
  1. 2
      react/src/components/addcoin/addcoinOptionsAC.js
  2. 41
      react/src/components/dashboard/importKeyModal/importKeyModal.scss

2
react/src/components/addcoin/addcoinOptionsAC.js

@ -25,7 +25,7 @@ class AddCoinOptionsAC extends React.Component {
let _items = []; let _items = [];
for (let i = 0; i < _assetChains.length; i++) { for (let i = 0; i < _assetChains.length; i++) {
const availableModes = _assetChains[i] === 'revs' || _assetChains[i] === 'jumblr' || _assetChains[i] === 'wlc' || _assetChains[i] === 'mnz' || _assetChains[i] === 'coqui' ? 'native|spv' : 'native'; const availableModes = _assetChains[i] !== 'kv' && _assetChains[i] !== 'mgw' ? 'native|spv' : 'native';
_items.push( _items.push(
<option <option

41
react/src/components/dashboard/importKeyModal/importKeyModal.scss

@ -11,25 +11,26 @@
padding: 50px 0 40px 0; padding: 50px 0 40px 0;
text-transform: uppercase; text-transform: uppercase;
font-weight: bold; font-weight: bold;
}
.line:before { &:before {
content: ''; content: '';
display: inline-block; display: inline-block;
height: 1px; height: 1px;
width: 47%; width: 47%;
background: #ccc; background: #ccc;
margin-right: 10px; margin-right: 10px;
position: relative; position: relative;
top: -4px; top: -4px;
} }
.line:after { &:after {
content: ''; content: '';
display: inline-block; display: inline-block;
height: 1px; height: 1px;
width: 47%; width: 47%;
background: #ccc; background: #ccc;
margin-left: 10px; margin-left: 10px;
position: relative; position: relative;
top: -4px; top: -4px;
}
} }
} }
Loading…
Cancel
Save