Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/KoFiButton.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default function KoFiButton({
}) {
return (
<div className="flex justify-start">
<div class="btn-container">
<div className="btn-container">
<a
title={label}
className={`${label?'kofi-button ':`rounded-full ${size?size:'w-10 h-10'} block flex justify-center`} rounded-full`}
Expand All @@ -17,10 +17,10 @@ export default function KoFiButton({
target="_blank"
rel="noopener noreferrer"
>
<span class="kofitext">
<span className="kofitext">
<img
src="https://ko-fi.com/img/cup-border.png"
class="kofiimg"
className="kofiimg"
alt="Ko-Fi button"
/>
{label?label:null}
Expand Down