Skip to content

Commit

Permalink
Revert random style change
Browse files Browse the repository at this point in the history
  • Loading branch information
kylanhurt committed Apr 11, 2019
1 parent 8cf08cc commit 4c308e5
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
25 changes: 25 additions & 0 deletions copy-bitcoin.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#!/bin/sh
# Usage: copy-bitcoin
set -e
src=$(pwd)/../edge-currency-bitcoin/packages/edge-currency-bitcoin/lib/react-native
dest=$(pwd)/node_modules/edge-currency-bitcoin/lib/react-native

mkdir -p $dest

cp -r $src/ $dest/

src=$(pwd)/../edge-currency-bitcoin/packages/nidavellir/lib
dest=$(pwd)/node_modules/nidavellir/lib

mkdir -p $dest

cp -r $src/ $dest/

src=$(pwd)/../edge-currency-bitcoin/packages/nidavellir-networks-unsafe/lib
dest=$(pwd)/node_modules/@nidavellir/networks-unsafe/lib

mkdir -p $dest

cp -r $src/ $dest/

sh postinstall.sh
1 change: 0 additions & 1 deletion src/styles/SettingsComponentsStyle.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ export const styles = {
padding: 3
},
customNodesInput: {
height: 128,
color: THEME.COLORS.GRAY_1,
fontSize: 15,
fontFamily: THEME.FONTS.DEFAULT,
Expand Down

0 comments on commit 4c308e5

Please sign in to comment.