Fix: Restore website functionality - all pages and APIs working

This commit is contained in:
Local Server
2026-01-14 07:16:04 -06:00
parent dc58a8ae5f
commit 9f659a2c59
41 changed files with 10890 additions and 3029 deletions

View File

@@ -232,18 +232,18 @@
.mobile-menu {
position: fixed;
top: 0;
left: -100%;
right: -100%;
width: 280px;
height: 100vh;
background: white;
z-index: 9999;
transition: left 0.3s ease;
transition: right 0.3s ease;
overflow-y: auto;
box-shadow: 2px 0 10px rgba(0,0,0,0.1);
box-shadow: -2px 0 10px rgba(0,0,0,0.1);
}
.mobile-menu.active {
left: 0;
right: 0;
}
.mobile-menu-overlay {