redesign #1

Merged
fred.boniface merged 115 commits from redesign into main 2022-10-29 20:12:58 +01:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 1d5c9b2109 - Show all commits

View File

@ -8,11 +8,11 @@ function collapseSidebar() {
function sidebarToggle() {
var bar = document.getElementById("sidebar");
if (bar.style.height === "0") {
if (bar.style.height === "0px") {
bar.style.height = "100%";
bar.style.display = "block";
} else {
bar.style.height = "0";
bar.style.height = "0px";
bar.style.display = "none";
}
}

View File

@ -37,7 +37,7 @@
top: 40px;
right: 0;
margin: auto;
height: 0;
height: 0px;
display: none;
max-width: 60%;
background-color: darkslategrey;