From d9532ed9c39dd2dde0a2fcd4072b6a0ce13eebd1 Mon Sep 17 00:00:00 2001 From: Till JS Date: Sun, 10 May 2026 14:40:17 +0200 Subject: [PATCH] fix(study): Hint-Text entfernt, kein vertikales Scrollen MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - grade-hint Paragraph und CSS entfernt (Keyboard-Shortcuts sichtbar in den Buttons selbst via kbd-Tags) - min-height: 100vh → height: 100vh + overflow: hidden Co-Authored-By: Claude Sonnet 4.6 --- apps/web/src/routes/study/[deckId]/+page.svelte | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/apps/web/src/routes/study/[deckId]/+page.svelte b/apps/web/src/routes/study/[deckId]/+page.svelte index 9aa030c..410dde2 100644 --- a/apps/web/src/routes/study/[deckId]/+page.svelte +++ b/apps/web/src/routes/study/[deckId]/+page.svelte @@ -253,8 +253,6 @@ {/if} - -

{t('study_session.grade_hint')}

{/if} @@ -266,7 +264,8 @@ flex-direction: column; align-items: center; justify-content: center; - min-height: 100vh; + height: 100vh; + overflow: hidden; padding: 2rem 1.5rem; } @@ -581,11 +580,4 @@ .grade.grade-easy:hover:not(:disabled) { background: hsl(var(--color-success) / 0.08); } - - .grade-hint { - margin: 1.25rem 0 0; - text-align: center; - font-size: 0.75rem; - color: hsl(var(--color-muted-foreground)); - }