pdfequips-footer 0.1.7 → 0.1.8

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.
@@ -94,6 +94,15 @@ export const Footer = ({
94
94
  <li>
95
95
  <a href="/zh/" className="text-muted">中文</a>
96
96
  </li>
97
+ <li>
98
+ <a href="https://www.buymeacoffee.com/sanusi" target="_blank"
99
+ ><img
100
+ src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png"
101
+ alt="Buy Me A Coffee"
102
+ style={{ height: "60px !important", width: "217px !important" }}
103
+ />
104
+ </a>
105
+ </li>
97
106
  </ul>
98
107
  </div>
99
108
  <div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pdfequips-footer",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "dev": "next dev",
package/scss/_footer.scss CHANGED
@@ -27,6 +27,13 @@ footer {
27
27
  align-self: stretch;
28
28
  }
29
29
 
30
+ .buy-me-coffee-btn {
31
+ img {
32
+ height: 60px !important;
33
+ width: 217px !important;
34
+ }
35
+ }
36
+
30
37
  .socials {
31
38
  @include extend("col d-flex justify-content-between align-items-center");
32
39