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 = [];
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(
<option

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

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