From 40a5826e7a2d81f65c56e783838518c56cf6ecec Mon Sep 17 00:00:00 2001 From: limited_dev Date: Wed, 7 Jun 2023 14:49:04 +0200 Subject: [PATCH] feat: further improved visuals Signed-off-by: limited_dev --- ImageBoardServerApp/Shared/Components/Comment.razor | 4 +++- ImageBoardServerApp/Shared/Components/Post.razor | 4 ++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ImageBoardServerApp/Shared/Components/Comment.razor b/ImageBoardServerApp/Shared/Components/Comment.razor index d5b30ed..cf6e091 100644 --- a/ImageBoardServerApp/Shared/Components/Comment.razor +++ b/ImageBoardServerApp/Shared/Components/Comment.razor @@ -24,7 +24,7 @@ @if (image != null) { string isActiveClass = isActive ? "active" : ""; - No Image found + No Image found }
@@ -84,11 +84,13 @@
+ [ Report @if (canDel) { } + ]
} diff --git a/ImageBoardServerApp/Shared/Components/Post.razor b/ImageBoardServerApp/Shared/Components/Post.razor index a24a83b..d1bcec1 100644 --- a/ImageBoardServerApp/Shared/Components/Post.razor +++ b/ImageBoardServerApp/Shared/Components/Post.razor @@ -84,6 +84,7 @@
+ [ @if (post.IsSticky) { @@ -100,8 +101,10 @@ { } + ] + [ Report @if (canDel) { @@ -115,6 +118,7 @@ { @post.Comments.Count Comments } + ]
}