Skip to content

Commit

Permalink
Merge pull request #40 from PseudoDopamine:Hotfix-3.6.1
Browse files Browse the repository at this point in the history
Hotfix v3.6.1
  • Loading branch information
SweetBoy13735 authored Jun 25, 2024
2 parents ecbadbb + 1c58d79 commit a98a2d6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions res/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -350,6 +350,12 @@ footer.flex{
}
}

@media only screen and (max-height: 545px) {
header h1, header hr {
display: none;
}
}

/* Helper classes =========================================================== */
/* Hide visually and from screen readers */
.hidden, [hidden] {
Expand Down
2 changes: 1 addition & 1 deletion res/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
const navBar = document.querySelector("nav.bar"), timerSegments = document.querySelector(".timer").querySelectorAll("td"), streamButton = document.querySelector("header .stream.button");

// State management
const featureTime = new Date("2024-06-27T22:00:00.000+01:00").getTime();
const featureTime = new Date("2024-06-27T21:00:00.000+01:00").getTime();

const updateTimer = setInterval(() => {
const timer = featureTime - new Date().getTime();
Expand Down

0 comments on commit a98a2d6

Please sign in to comment.