@bbki.ng/site 2.0.35 → 2.0.36

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
@@ -1,5 +1,7 @@
1
1
  # @bbki.ng/site
2
2
 
3
+ ## 2.0.36
4
+
3
5
  ## 2.0.35
4
6
 
5
7
  ## 2.0.34
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bbki.ng/site",
3
- "version": "2.0.35",
3
+ "version": "2.0.36",
4
4
  "description": "code behind bbki.ng",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -30,7 +30,7 @@ export const ArticlePage = (props: ArticlePageProps) => {
30
30
  }
31
31
 
32
32
  const articleCls = classNames("prose", {
33
- "mb-20": tagNames,
33
+ "mb-20": true,
34
34
  });
35
35
 
36
36
  return (
@@ -33,7 +33,7 @@ const heart = (
33
33
  width={HEART_SIZE}
34
34
  stroke-linejoin="round"
35
35
  // style={{ color: "#fecaca" }}
36
- className="text-red-200 hover:text-red-400 transition-colors"
36
+ className="text-gray-400 hover:text-red-400 transition-colors ease-in duration-200"
37
37
  viewBox="0 0 16 16"
38
38
  >
39
39
  <path
@@ -102,7 +102,11 @@ export const OpenHeartReaction = (props: { title: string }) => {
102
102
 
103
103
  return (
104
104
  <open-heart
105
- style={{ display: "flex", padding: 4, marginTop: "1rem" }}
105
+ style={{
106
+ display: "flex",
107
+ padding: 4,
108
+ marginTop: "1rem",
109
+ }}
106
110
  ref={ohRef}
107
111
  href={`https://oh.bbking.workers.dev/?id=${title}`}
108
112
  emoji="❤️"