@@ -212,6 +212,8 @@ const PostDesktop = ({ openReplyModal, post, roles, showAllReplies }: PostProps)
)}
{!(pinned && !isInPostPage) &&
+ !isDescription &&
+ !isRules &&
replies &&
(showAllReplies ? replies : replies.slice(-5)).map((reply, index) => (
@@ -486,6 +488,8 @@ const PostMobile = ({ openReplyModal, post, roles, showAllReplies }: PostProps)
)}
{!(pinned && !isInPostPage) &&
+ !isDescription &&
+ !isRules &&
replies &&
(showAllReplies ? replies : replies.slice(-5)).map((reply, index) => (
diff --git a/src/views/not-found/not-found.module.css b/src/views/not-found/not-found.module.css
index 3724cc9a..df9c1f1a 100644
--- a/src/views/not-found/not-found.module.css
+++ b/src/views/not-found/not-found.module.css
@@ -53,4 +53,16 @@
.backToBoard a {
color: blue;
+}
+
+@media (max-width: 640px) {
+ .content {
+ min-width: 0;
+ width: auto;
+ padding: 10px;
+ }
+
+ .boxContent img {
+ width: 100%;
+ }
}
\ No newline at end of file