feat: Replace Card components with PageCard

This commit is contained in:
shiyu
2025-08-26 11:41:37 +08:00
parent dbd87a7c37
commit a998d08a4d
7 changed files with 38 additions and 31 deletions

View File

@@ -0,0 +1,8 @@
import { Card, type CardProps } from 'antd';
import { memo } from 'react';
const PageCard = memo((props: CardProps) => {
return <Card styles={{ body: { overflowY: 'auto', height: 'calc(100vh - 145px)' } }} {...props} />;
});
export default PageCard;