fix: position is set to relative is needed in wrapper of editor-container (#1060)

This commit is contained in:
Fangdun Tsai
2023-02-16 18:04:02 +08:00
committed by GitHub
parent b94c0df49e
commit 88a690a7d1

View File

@@ -6,6 +6,7 @@ import { styled } from '@affine/component';
const StyledEditorContainer = styled('div')(() => {
return {
position: 'relative',
height: 'calc(100vh - 60px)',
padding: '0 32px',
};