Skip to content

Commit

Permalink
Update characterCreator.js
Browse files Browse the repository at this point in the history
  • Loading branch information
davespser authored Dec 6, 2024
1 parent a83e7ce commit b8d7024
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions js/characterCreator.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,13 @@ const questions = [
// Elementos del DOM
const container = document.createElement("div");
container.id = "questionnaire";
container.style.position = "flex";
container.style.position = "absolute";
container.style.top = "60%";
container.style.left = "90%";
container.style.fontsize = "15";
container.style.transform = "translate(-20%, -20%)";
container.style.backgroundColor = "rgba(0, 0, 0, 0.2)";
container.style.backgroundColor = "rgba(0, 0, 0, 0.9)";
comtainer.style.alignitems = "flex-start";
container.style.color = "White";
container.style.padding = "60px";
container.style.borderRadius = "10px";
Expand Down

0 comments on commit b8d7024

Please sign in to comment.