Skip to content

Commit

Permalink
chore: set status point attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
qFamouse committed Sep 21, 2022
1 parent 1840422 commit 2c500d4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/contents/quiz-attempt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 2c500d4

Please sign in to comment.