Skip to content

Commit

Permalink
Update index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
lexerotk authored Oct 19, 2024
1 parent 479fb2e commit fcfda2c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions script/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,14 @@ if (isMobile==true) {
document.getElementsByClassName("navigationbutton")[i].style.fontSize = "13px";
}

// NAVIGATION BUTTON PADDING
for (let i = 0; i < document.getElementsByClassName("navigationbutton").length; i++) {
document.getElementsByClassName("navigationbutton")[i].style.padding = "15px";
}

// UL GAP SIZE
document.getElementById("navUl").style.gap = "5px"

// CONTAINER WIDTH
document.getElementById("container").style.width = "90%"
}

0 comments on commit fcfda2c

Please sign in to comment.