Compare commits

..

No commits in common. "8a488ec209c28daf4bc99a0d1c8c8d95b4543742" and "c7c3fa1906ef97f42f2f01a7ec3b19a1def4a55c" have entirely different histories.

2 changed files with 0 additions and 18 deletions

View File

@ -67,18 +67,6 @@
body.with-sidebar {
display: block;
}
.main-content-area {
height: 100vh;
display: flex;
flex-direction: column;
}
#main-content {
flex: 1;
overflow-y: auto;
-webkit-overflow-scrolling: touch; /* For smooth scrolling on iOS */
}
}
.sidebar h2 {

View File

@ -207,12 +207,6 @@ function openFeed(feed) {
topBarTitle.innerHTML = `RSS Reader <span class="feed-title-separator">-</span> ${feed.name}`;
// Update the browser document title
document.title = `RSS Reader - ${feed.name}`;
// Close sidebar if on mobile
if (window.innerWidth <= 768) {
const sidebar = document.getElementById('sidebar');
sidebar.classList.remove('active');
}
} else {
console.error('Failed to poll feed:', response.status);
}