Skip to content

Commit

Permalink
add style for button container
Browse files Browse the repository at this point in the history
  • Loading branch information
superstar54 committed Nov 14, 2024
1 parent 43917f0 commit 6905004
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/core/GUIManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ class GUIManager {
const buttonContainer = document.createElement("div");
buttonContainer.style.display = "flex";
buttonContainer.style.position = "absolute";
buttonContainer.style.backgroundColor = "rgba(255, 255, 255, 0.8)";
buttonContainer.style.padding = "10px";
buttonContainer.style.borderRadius = "5px";
buttonContainer.style.right = "5px";
buttonContainer.style.top = "5px";
buttonContainer.style.gap = "5px";
Expand Down

0 comments on commit 6905004

Please sign in to comment.