@bbki.ng/site 2.0.37 → 2.0.40
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
Binary file
|
|
@@ -29,22 +29,22 @@ export const ArticlePage = (props: ArticlePageProps) => {
|
|
|
29
29
|
return props.children;
|
|
30
30
|
}
|
|
31
31
|
|
|
32
|
-
const articleCls = classNames("prose"
|
|
33
|
-
"mb-20": true,
|
|
34
|
-
});
|
|
32
|
+
const articleCls = classNames("prose");
|
|
35
33
|
|
|
36
34
|
return (
|
|
37
35
|
<>
|
|
38
36
|
<Article
|
|
39
37
|
title={title}
|
|
40
38
|
description={description}
|
|
41
|
-
className={props.className}
|
|
39
|
+
className={`${props.className} mb-128`}
|
|
42
40
|
loading={loading}
|
|
43
41
|
>
|
|
44
42
|
<article className={articleCls}>{props.children}</article>
|
|
43
|
+
<div className="mt-[1.25em] relative left-[-4px]">
|
|
44
|
+
{<Tags tags={allTags} />}
|
|
45
|
+
</div>
|
|
45
46
|
</Article>
|
|
46
|
-
<div className="
|
|
47
|
-
<span>{<Tags tags={allTags} />}</span>
|
|
47
|
+
<div className="px-16">
|
|
48
48
|
<Reaction title={title} />
|
|
49
49
|
</div>
|
|
50
50
|
</>
|