Skip to content

Commit

Permalink
Fix Donation on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
linkdotnet committed Jun 21, 2024
1 parent 55075a4 commit 18ba755
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@
<div class="d-flex flex-column flex-md-row gap-2 justify-content-start align-items-center">
@if (AppConfiguration.Value.IsKofiEnabled)
{
<div>
<div class="mt-2">
<Kofi KofiToken="@AppConfiguration.Value.KofiToken"></Kofi>
</div>
}

@if (AppConfiguration.Value.IsGithubSponsorAvailable)
{
<div class="mb-2 mb-md-0 me-md-2">
<GithubSponsor Name="@AppConfiguration.Value.GithubSponsorName"></GithubSponsor>
</div>
<div class="mt-2">
<GithubSponsor Name="@AppConfiguration.Value.GithubSponsorName"></GithubSponsor>
</div>
}

@if (AppConfiguration.Value.IsPatreonEnabled)
{
<div class="mb-2 mb-md-0 me-md-2">
<div class="mt-2">
<Patreon PatreonName="@AppConfiguration.Value.PatreonName"></Patreon>
</div>
}
Expand Down

0 comments on commit 18ba755

Please sign in to comment.