Skip to content

Commit cc17642

Browse files
committed
added download support
1 parent 8f232dd commit cc17642

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

app/src/main/assets/index.html

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,31 @@
240240
margin-right: 6px;
241241
font-size: 16px;
242242
}
243+
244+
.test-button {
245+
display: block;
246+
width: 100%;
247+
padding: 16px;
248+
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
249+
color: white;
250+
text-align: center;
251+
text-decoration: none;
252+
border-radius: 16px;
253+
font-weight: 600;
254+
font-size: 16px;
255+
box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
256+
margin-bottom: 20px;
257+
transition: all 0.3s ease;
258+
}
259+
260+
.test-button:hover {
261+
transform: translateY(-2px);
262+
box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
263+
}
264+
265+
.test-button:active {
266+
transform: translateY(0);
267+
}
243268

244269
@media (max-width: 600px) {
245270
.banks-grid {
@@ -277,6 +302,10 @@
277302
<div class="content">
278303
<input type="text" class="search-box" placeholder="🔍 Search for your bank..." id="searchBox" oninput="filterBanks()">
279304

305+
<!-- <a href="test.html" class="test-button">
306+
🧪 Test Features (Camera, Mic, Downloads)
307+
</a> -->
308+
280309
<div class="section-title">Trusted Banking Partners</div>
281310

282311
<div class="banks-grid" id="banksGrid">

0 commit comments

Comments
 (0)