From 2c500d44713ea87906ea99be8384de39f75b2228 Mon Sep 17 00:00:00 2001 From: Famouse Date: Wed, 21 Sep 2022 13:31:36 +0300 Subject: [PATCH] chore: set status point attributes --- src/contents/quiz-attempt.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/contents/quiz-attempt.ts b/src/contents/quiz-attempt.ts index 8aa802f..71fd041 100644 --- a/src/contents/quiz-attempt.ts +++ b/src/contents/quiz-attempt.ts @@ -93,9 +93,9 @@ function CreateStatus() { let status = document.createElement("div"); status.innerHTML = "•"; status.style.position = 'fixed'; - status.style.fontSize = "50px"; - status.style.bottom = '100px' - status.style.left = '100px' + status.style.fontSize = "20px"; + status.style.bottom = '20px' + status.style.left = '20px' status.style.display = 'none' document.body.appendChild(status); return status;