Hexo 样式调整

This commit is contained in:
tangly1024
2022-02-28 15:31:09 +08:00
parent 8d91ad7110
commit d0dece5539
6 changed files with 9 additions and 9 deletions

View File

@@ -1,7 +1,7 @@
const Card = ({ children, headerSlot, className }) => {
return <div className={className}>
<>{headerSlot}</>
<section className="shadow-xl hover:shadow-2xl border border-gray-100 rounded-xl px-2 py-4 bg-white dark:bg-gray-800 duration-300">
<section className="shadow-md hover:shadow-2xl border border-gray-100 rounded-xl px-2 py-4 bg-white dark:bg-gray-800 duration-300">
{children}
</section>
</div>