fix(plugin-mobile): the layout is incorrect (#2360)

This commit is contained in:
Dunqing 2023-08-02 15:59:32 +08:00 committed by GitHub
parent b34b7319e9
commit a2fe6ab18d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,7 +15,11 @@ const AppInner = memo(({ children }: { children: React.ReactNode }) => {
const AntdAppProvider = ({ children }: { children: React.ReactNode }) => { const AntdAppProvider = ({ children }: { children: React.ReactNode }) => {
return ( return (
<App> <App
style={{
height: '100%',
}}
>
<AppInner>{children}</AppInner> <AppInner>{children}</AppInner>
</App> </App>
); );