diff --git a/index.html b/index.html index f7a80df..24c9f0b 100644 --- a/index.html +++ b/index.html @@ -13,7 +13,7 @@ - + @@ -45,6 +45,7 @@ .mainContainer { display: flex; justify-content: center; + padding: 2em 0; width: 100%; margin-top: 64px; } @@ -58,15 +59,16 @@ form { margin: 0 auto; - padding: 2em 0; + padding: 1em 0; } textarea { - margin: 0 3em; + margin: 1em 3em; resize: none; font-size: 1em; - border: none; + border: solid 2px pink; outline: none; + padding: 1em; } .header { @@ -132,7 +134,7 @@
Disclosure sent!
@@ -142,7 +144,6 @@ const whistle = () => { const disclosure = box.value - console.log(disclosure) box.value = "" showConfirm() } @@ -151,11 +152,7 @@ const showConfirm = () => { confirm.style.display = "block" - console.log('displaying confirm') - setTimeout(() => { - confirm.style.display = "none" - console.log('hiding confirm') - }, 5000) + setTimeout(() => confirm.style.display = "none", 5000) } document.addEventListener('keydown', (event) => {