diff --git a/app.js b/app.js
index e1c3041..67acf04 100644
--- a/app.js
+++ b/app.js
@@ -12,7 +12,7 @@ document.querySelector('.value-block').addEventListener('toggle', function() {
valueBlock.scrollIntoView({ behavior: "smooth" });
setTimeout(() => {
valueBlock.scrollIntoView({ behavior: "smooth" });
- }, 100);
+ }, 150);
} else {
// Scroll to top of button list when value block is closed
}
@@ -80,7 +80,7 @@ document.querySelector("#btc-qr-link a").addEventListener("click", function(){
document.querySelector("#btcwall").insertAdjacentHTML("afterend", "
");
setTimeout(() => {
document.querySelector("#btc-qr-link").scrollIntoView({ behavior: "smooth" });
- }, 100);
+ }, 150);
}
});
@@ -100,7 +100,7 @@ document.querySelector("#eth-qr-link a").addEventListener("click", function(){
document.querySelector("#ethwall").insertAdjacentHTML("afterend", "
");
setTimeout(() => {
document.querySelector("#eth-qr-link").scrollIntoView({ behavior: "smooth" });
- }, 100);
+ }, 150);
}
});
@@ -120,6 +120,6 @@ document.querySelector("#doge-qr-link a").addEventListener("click", function(){
document.querySelector("#dogewall").insertAdjacentHTML("afterend", "
");
setTimeout(() => {
document.querySelector("#doge-qr-link").scrollIntoView({ behavior: "smooth" });
- }, 100);
+ }, 150);
}
});