@bbki.ng/ui 0.1.20 → 0.1.22
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 +12 -0
- package/package.json +1 -1
- package/src/molecules/article/Article.tsx +1 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@ export const Article = (props: ArticleProps) => {
|
|
|
11
11
|
<span className="text-2xl mb-2 inline-block text-content-primary">{title}</span>
|
|
12
12
|
{loading && title && <BlinkDot status="blink" className="ml-2" />}
|
|
13
13
|
{date && (
|
|
14
|
-
<div className="
|
|
14
|
+
<div className="pb-0 text-content-secondary">
|
|
15
15
|
<small>{date}</small>
|
|
16
16
|
</div>
|
|
17
17
|
)}
|