1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

fix admin page ui

This commit is contained in:
grafixeyehero 2022-07-23 18:49:44 +03:00
parent 2cdc1bcfef
commit 732e3eb956
2 changed files with 11 additions and 12 deletions

View file

@ -160,7 +160,11 @@ const ConnectionRequired: FunctionComponent<ConnectionRequiredProps> = ({
return null;
}
return <Outlet />;
return (
<div className='skinBody'>
<Outlet />
</div>
);
};
export default ConnectionRequired;