Skip to content

Commit

Permalink
v3.0.2, fix menu shadow a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewTG5 committed Dec 17, 2019
1 parent bf35210 commit 908b16e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion css.css
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ body {
transition: width 0.25s cubic-bezier(0.25, 0.1, 0.1, 1), box-shadow 0.25s cubic-bezier(0.25, 0.1, 0.1, 1);
backdrop-filter: var(--mainBlur);
border-radius: var(--mainRadius);
box-shadow: 3px 3px 15px -4px rgba(0, 0, 0, 0.5), 48vw 0px 0px 50vw rgba(0, 0, 0, 0.3);
box-shadow: 3px 3px 15px -4px rgba(0, 0, 0, 0.5), 40vw 0px 0px 50vw rgba(0, 0, 0, 0.3);
}

.mouseout {
Expand Down
2 changes: 1 addition & 1 deletion js/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ function openNav() {
var soundPref = localStorage.getItem("soundPref");
document.querySelector(".hamburger").classList.add("is-active"); //triggers hamburger menu animation
document.getElementById("mySidenav").style.width = "22vw"; //size of the menu when open
document.getElementById("mySidenav").style.boxShadow = "3px 3px 15px -4px rgba(0, 0, 0, 0.5), 48vw 0px 0px 50vw rgba(0,0,0,0.3)";
document.getElementById("mySidenav").style.boxShadow = "3px 3px 15px -4px rgba(0, 0, 0, 0.5), 40vw 0px 0px 50vw rgba(0,0,0,0.3)";
document.getElementById("content").style.opacity = "1";
if (navOpen == "0") {
sessionStorage.setItem("navOpen", "1");
Expand Down
2 changes: 1 addition & 1 deletion settings.html
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ <h1 class="title">Settings</h1>
<div class="foot">
<p>Author: Andrew Blake</p>
<br>
<p>Version 3.0.1</p>
<p>Version 3.0.2</p>
</div>
</div>
</body>
Expand Down

0 comments on commit 908b16e

Please sign in to comment.