style: 移除 CoverImage 组件中的多余边框样式

This commit is contained in:
wood chen 2025-06-20 16:44:51 +08:00
parent 40c2fc9b0d
commit f7ff1d044a

View File

@ -39,9 +39,8 @@ const CoverImage = (props) => {
} }
} }
return ( return (
<div className={`border-2 border-gray-50 md:scale-100 scale-50 ${props.platform}`}> <div className={`md:scale-100 scale-50 ${props.platform}`}>
{selectTheme(theme)} {selectTheme(theme)}
</div> </div>
); );