From 3f25d8a09e21553c3dbeb5562aa666499126d23e Mon Sep 17 00:00:00 2001 From: cupcakearmy Date: Mon, 22 Nov 2021 01:58:15 +0100 Subject: [PATCH] set fixed color --- src/client/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/client/index.js b/src/client/index.js index 46a8a69..5234afc 100644 --- a/src/client/index.js +++ b/src/client/index.js @@ -7,6 +7,7 @@ function init() { Object.assign(wrapper.style, { display: 'none', position: 'fixed', + color: '#000', top: '0', left: '0', width: '100vw', @@ -39,5 +40,5 @@ async function check() { } init() -setInterval(check, 5000) +setInterval(check, 2000) check()