We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54b940e commit b1c4a9dCopy full SHA for b1c4a9d
LinkDotNet.Blog.Web/Shared/Like.razor
@@ -2,7 +2,7 @@
2
@using Blazored.LocalStorage
3
@using LinkDotNet.Infrastructure.Persistence
4
@inject ILocalStorageService _localStorage
5
-<div style="float: right">
+<div class="like-container">
6
<small>@BlogPost.Likes @LikeText</small>
7
<button class="btn @BtnClass" @onclick="LikeBlogPost"><i class="far fa-thumbs-up"></i> @LikeTextButton</button>
8
</div>
LinkDotNet.Blog.Web/Shared/Like.razor.css
@@ -0,0 +1,8 @@
1
+.like-container {
+ float: right;
+ margin-top: 20px;
+}
+
+.like-container button {
+ margin-left: 10px;
0 commit comments