Skip to content

Commit 7d8fb4b

Browse files
committed
update readme & blt wallet image, improve css, add missing font, clean up html
1 parent 79f5949 commit 7d8fb4b

File tree

9 files changed

+26
-9
lines changed

9 files changed

+26
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ An open source testnet web wallet for Bitcoin and Litecoin
66

77
If you'd like to see blt-wallet in action, click [here](https://sereneblue.github.io/blt-wallet/). You can also save blt-wallet for local usage. Use the index.html file located in the `src` folder.
88

9-
Compatible with Android 7.0+ WebView.
9+
Compatible with Android 7.0+ WebView (Chrome v51) and Firefox Focus 2.3.
1010

1111
## Special Thanks
1212

blt-wallet.png

-113 KB
Loading

docs/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,8 @@ <h2>Transactions</h2>
129129
<i class="medium circular inverted green arrow left icon"></i>
130130
<i v-if="tx.confirmations < 1" class="medium hourglass start icon">
131131
</td>
132-
<td><span v-bind:data-livestamp="tx.time"></span></td>
133-
<td><a v-bind:href="baseURL + '/tx/' + tx.txid" target="_blank">{{ tx.txid }}</a></td>
132+
<td><span :data-livestamp="tx.time"></span></td>
133+
<td><a :href="baseURL + '/tx/' + tx.txid" target="_blank">{{ tx.txid }}</a></td>
134134
<td v-if="tx.vin[0].addr == address" class="negative">-{{ tx.vout[0].value }} {{ symbol }}</td>
135135
<td v-else class="positive">+{{ getOutputValue(tx.vout) }} {{ symbol }}</td>
136136
</tr>

src/css/style.css

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,15 @@
9898
text-align: center;
9999
}
100100
}
101-
@media screen and (max-width: 768px) {
101+
@media screen and (max-width: 1024px) {
102+
103+
td {
104+
max-width: 300px;
105+
white-space: nowrap;
106+
overflow: hidden;
107+
text-overflow: ellipsis;
108+
}
109+
102110
.pusher {
103111
padding-left: 0px;
104112
}
@@ -127,7 +135,15 @@
127135
}
128136
}
129137

130-
@media screen and (max-device-width: 768px) {
138+
@media screen and (max-device-width: 1024px) {
139+
140+
td {
141+
max-width: 300px;
142+
white-space: nowrap;
143+
overflow: hidden;
144+
text-overflow: ellipsis;
145+
}
146+
131147
.pusher {
132148
padding-left: 0px;
133149
}

src/fonts/icons.eot

268 Bytes
Binary file not shown.

src/fonts/icons.svg

Lines changed: 1 addition & 0 deletions
Loading

src/fonts/icons.ttf

268 Bytes
Binary file not shown.

src/fonts/icons.woff

268 Bytes
Binary file not shown.

src/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@
8585
<div class="header">
8686
Faucets
8787
</div>
88-
<div class="item" :href="faucet[1]" v-for="faucet in faucets" target="_blank">
88+
<a class="item" :href="faucet[1]" v-for="faucet in faucets" target="_blank">
8989
{{ faucet[0] }}
90-
</div>
90+
</a>
9191
</div>
9292
</button>
9393
</div>
@@ -130,8 +130,8 @@ <h2>Transactions</h2>
130130
<i class="medium circular inverted green arrow left icon"></i>
131131
<i v-if="tx.confirmations < 1" class="medium hourglass start icon">
132132
</td>
133-
<td><span v-bind:data-livestamp="tx.time"></span></td>
134-
<td><a v-bind:href="baseURL + '/tx/' + tx.txid" target="_blank">{{ tx.txid }}</a></td>
133+
<td><span :data-livestamp="tx.time"></span></td>
134+
<td><a :href="baseURL + '/tx/' + tx.txid" target="_blank">{{ tx.txid }}</a></td>
135135
<td v-if="tx.vin[0].addr == address" class="negative">-{{ tx.vout[0].value }} {{ symbol }}</td>
136136
<td v-else class="positive">+{{ getOutputValue(tx.vout) }} {{ symbol }}</td>
137137
</tr>

0 commit comments

Comments
 (0)