From e4f9d42990fcb892a24d300d3b31d090efba6130 Mon Sep 17 00:00:00 2001 From: L-Sun Date: Thu, 16 Oct 2025 12:07:29 +0800 Subject: [PATCH] fix(core): can not scroll all page list in MacOS 26 (#13763) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Close https://github.com/toeverything/AFFiNE/issues/13754 #### PR Dependency Tree * **PR #13763** πŸ‘ˆ This tree was auto-generated by [Charcoal](https://github.com/danerwilliams/charcoal) ## Summary by CodeRabbit * **Style** * Updated page layout sizing to no longer force full-height on the docs body, allowing height to adapt to content. * Improves natural scrolling and reduces layout constraints in the workspace β€œAll” page. * Enhances responsiveness across varying screen sizes by relying on content and container sizing rules. --- .../core/src/desktop/pages/workspace/all-page/all-page.css.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/frontend/core/src/desktop/pages/workspace/all-page/all-page.css.ts b/packages/frontend/core/src/desktop/pages/workspace/all-page/all-page.css.ts index 7d445feac5..b19b4d039f 100644 --- a/packages/frontend/core/src/desktop/pages/workspace/all-page/all-page.css.ts +++ b/packages/frontend/core/src/desktop/pages/workspace/all-page/all-page.css.ts @@ -25,7 +25,6 @@ export const body = style({ display: 'flex', flexDirection: 'column', flex: 1, - height: '100%', width: '100%', containerName: 'docs-body', containerType: 'size',