mirror of
https://github.com/DefectingCat/DefectingCat.github.io
synced 2025-07-16 09:11:38 +00:00
chore: upgrade tailwindcss
up to v4
This commit is contained in:
@ -58,12 +58,12 @@ const PostToc = ({ toc, tocLength }: Props) => {
|
||||
</div>
|
||||
|
||||
<div className="toc text-lg">
|
||||
<ul className="!pl-[unset]">
|
||||
<ul className="pl-[unset]!">
|
||||
{toc?.map((h) => (
|
||||
<Fragment key={h.link}>
|
||||
<TocItem item={h} />
|
||||
{h.children.map((child) => (
|
||||
<ul className="!pl-4" key={child.link}>
|
||||
<ul className="pl-4!" key={child.link}>
|
||||
<TocItem item={child} />
|
||||
</ul>
|
||||
))}
|
||||
|
Reference in New Issue
Block a user