This commit is contained in:
2026-06-16 12:34:08 +02:00
parent e9c865a254
commit 967803c326
3 changed files with 10 additions and 3 deletions
+2 -1
View File
@@ -70,7 +70,7 @@ a,
.feed-title { .feed-title {
cursor: pointer; cursor: pointer;
font-family: Glook, 'Courier New'; font-family: Glook, 'Courier New';
font-size: clamp(1.25rem, 4.5vw, 1.6rem); font-size: clamp(1.4rem, 5vw, 2rem);
font-weight: bold; font-weight: bold;
color: var(--color-accent-2); color: var(--color-accent-2);
border-bottom: 1px solid #ccc; border-bottom: 1px solid #ccc;
@@ -112,5 +112,6 @@ h3 {
@media (min-width: 768px) { @media (min-width: 768px) {
#app { #app {
padding: 0.75rem; padding: 0.75rem;
padding-top: var(--app-nav-height, 4.5rem);
} }
} }
+1 -1
View File
@@ -325,7 +325,7 @@ onMounted(async () => {
margin: 0; margin: 0;
padding: 0 1rem; padding: 0 1rem;
font-family: 'Courier New'; font-family: 'Courier New';
font-size: clamp(1.75rem, 6vw, 2.75rem); font-size: clamp(1.4rem, 5vw, 2rem);
font-weight: bold; font-weight: bold;
line-height: 1.15; line-height: 1.15;
color: var(--color-accent-2); color: var(--color-accent-2);
+7 -1
View File
@@ -290,9 +290,15 @@ function toggleViewMode() {
} }
} }
function toggleLayout() { async function toggleLayout() {
if (observer) {
observer.disconnect()
observer = null
}
layout.value = layout.value === 'list' ? 'cards' : 'list' layout.value = layout.value === 'list' ? 'cards' : 'list'
localStorage.setItem('layout', layout.value) localStorage.setItem('layout', layout.value)
await nextTick()
setupIntersectionObserver()
} }
function nextArticle() { function nextArticle() {