Skip to content

Commit

Permalink
Merge pull request #761 from qingtiantongxie/fix-#756
Browse files Browse the repository at this point in the history
fix(bug#756): 修复web项目在暗色主题下某些页面的显示问题
  • Loading branch information
zsnmwy authored May 6, 2023
2 parents 6d9fcfd + d36b955 commit 087dc98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/web/src/components/common/Card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const Card = ({
style?: React.CSSProperties;
className?: string;
}) => (
<div className={className} style={{ padding: 20, background: 'white', ...style }}>
<div className={className} style={{ padding: 20, ...style }}>
<div>
{title}
{operations}
Expand Down

0 comments on commit 087dc98

Please sign in to comment.