Skip to content

Commit 18ba755

Browse files
committed
Fix Donation on mobile
1 parent 55075a4 commit 18ba755

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/LinkDotNet.Blog.Web/Features/ShowBlogPost/Components/DonationSection.razor

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,21 @@
22
<div class="d-flex flex-column flex-md-row gap-2 justify-content-start align-items-center">
33
@if (AppConfiguration.Value.IsKofiEnabled)
44
{
5-
<div>
5+
<div class="mt-2">
66
<Kofi KofiToken="@AppConfiguration.Value.KofiToken"></Kofi>
77
</div>
88
}
99

1010
@if (AppConfiguration.Value.IsGithubSponsorAvailable)
1111
{
12-
<div class="mb-2 mb-md-0 me-md-2">
13-
<GithubSponsor Name="@AppConfiguration.Value.GithubSponsorName"></GithubSponsor>
14-
</div>
12+
<div class="mt-2">
13+
<GithubSponsor Name="@AppConfiguration.Value.GithubSponsorName"></GithubSponsor>
14+
</div>
1515
}
1616

1717
@if (AppConfiguration.Value.IsPatreonEnabled)
1818
{
19-
<div class="mb-2 mb-md-0 me-md-2">
19+
<div class="mt-2">
2020
<Patreon PatreonName="@AppConfiguration.Value.PatreonName"></Patreon>
2121
</div>
2222
}

0 commit comments

Comments
 (0)