fix: prevent spurious y-scrollbar when section has overflow-x: auto on mobile

Setting overflow-x: auto forces overflow-y off 'visible' per CSS spec,
which caused an unwanted vertical scrollbar in stacked note sections.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Julien Calixte
2026-04-19 14:28:25 +02:00
parent b827f31cf0
commit 1fa66d8594
2 changed files with 2 additions and 0 deletions

View File

@@ -278,6 +278,7 @@ $border-color: rgba(18, 19, 58, 0.2);
section {
padding: 1rem 0 2rem;
overflow-x: auto;
overflow-y: hidden;
}
.note-content {