This commit is contained in:
2026-03-23 20:21:11 -03:00
parent 521f414bef
commit ad61fc3308
75 changed files with 4522 additions and 4283 deletions
+11
View File
@@ -0,0 +1,11 @@
function toggleDiv() {
var div = document.getElementById("menu_bar_nav");
var header = document.getElementById("header_css");
if (div.style.display === "flex") {
div.style.display = "none";
header.style.borderRadius = "0 0 12px 12px";
} else {
div.style.display = "flex";
header.style.borderRadius = "0 0 0 0";
}
}