Bugfix/finalisierung #73

Merged
mg8220s merged 22 commits from bugfix/finalisierung into dev 2024-11-20 12:08:06 +01:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 6d4ba00130 - Show all commits

View File

@@ -72,7 +72,7 @@ document.addEventListener('DOMContentLoaded', () => {
// Add this right after your existing toggleSidebar function
function updateMenuVisibility() {
const menuToggle = document.querySelector('.menu-toggle');
if (window.innerWidth <= 768) { // Smartphone breakpoint
if (window.innerWidth <= 1024) { // Smartphone breakpoint
menuToggle.style.display = 'flex';
} else {
menuToggle.style.display = 'none';

View File

@@ -59,7 +59,7 @@ if (!isset($topicData)) {
</nav>
<!-- Main Content -->
<main class="main-content max-w-7xl">
<main class="main-content max-w-7xl mt-5">
<div class="content-card">
<h1 class="content-title"><?php echo($topicData->displayName); ?></h1>