From deb8c27eca981c441f9b6883269a40acfdb9e1d3 Mon Sep 17 00:00:00 2001 From: Fedor Katurov Date: Tue, 23 Mar 2021 11:23:42 +0700 Subject: [PATCH] fixed timestamp overflow on comments --- .../comment/CommentTextBlock/styles.module.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/components/comment/CommentTextBlock/styles.module.scss b/src/components/comment/CommentTextBlock/styles.module.scss index ec47d8fd..f99189e4 100644 --- a/src/components/comment/CommentTextBlock/styles.module.scss +++ b/src/components/comment/CommentTextBlock/styles.module.scss @@ -28,4 +28,12 @@ :global(.green) { color: $wisegreen; } + + & :last-child::after { + display: inline-block; + content: " "; + height: 1em; + width: 120px; + flex: 0 0 120px; + } }