From b858250b990696a1cf4f65d0a91db7d6c8360efd Mon Sep 17 00:00:00 2001 From: Pavel Mineev Date: Fri, 24 Jan 2020 03:31:45 +0300 Subject: [PATCH] fix --- .../app/components/comment/_replying/comment_replying.scss | 7 ++++++- frontend/app/components/comment/comment.scss | 6 ++++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/frontend/app/components/comment/_replying/comment_replying.scss b/frontend/app/components/comment/_replying/comment_replying.scss index 02e887c7e0..9dadc87eb4 100644 --- a/frontend/app/components/comment/_replying/comment_replying.scss +++ b/frontend/app/components/comment/_replying/comment_replying.scss @@ -1,5 +1,7 @@ .comment_replying { padding-bottom: 0; + position: relative; + z-index: 1; .comment__score { top: 4px; @@ -10,6 +12,9 @@ @media (-moz-touch-enabled: 1) and (max-width: 768px), (pointer: coarse) and (max-width: 768px) { border: 8px solid; + .comment__info { + padding-left: 8px; + } .comment__body { padding: 8px 8px 0; } @@ -22,7 +27,7 @@ } .comment__score { - top: 12px; + top: 5px; right: 8px; } } diff --git a/frontend/app/components/comment/comment.scss b/frontend/app/components/comment/comment.scss index 9eb9440d78..9285a092ce 100644 --- a/frontend/app/components/comment/comment.scss +++ b/frontend/app/components/comment/comment.scss @@ -23,3 +23,9 @@ .comment-form_type_reply { margin-left: 17px; } + +@media (-moz-touch-enabled: 1) and (max-width: 768px), (pointer: coarse) and (max-width: 768px) { + .comment-form_type_reply { + margin-left: 0; + } +}