File tree 3 files changed +17
-2
lines changed
3 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ const AuthorLabel = ({
51
51
52
52
const authorName = useMemo ( ( ) => (
53
53
< span
54
- className = { classNames ( 'mr-1.5 font-size-14 font-style font-weight-500' , {
54
+ className = { classNames ( 'mr-1.5 font-size-14 font-style font-weight-500 author-name ' , {
55
55
'text-gray-700' : isRetiredUser ,
56
56
'text-primary-500' : ! authorLabelMessage && ! isRetiredUser ,
57
57
} ) }
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ const CommentsView = ({ endorsed }) => {
36
36
37
37
const handleDefinition = useCallback ( ( message , commentsLength ) => (
38
38
< div
39
- className = "mx-4 my-14px text-gray-700 font-style"
39
+ className = "comment-line mx-4 my-14px text-gray-700 font-style"
40
40
role = "heading"
41
41
aria-level = "2"
42
42
>
Original file line number Diff line number Diff line change @@ -340,6 +340,10 @@ header {
340
340
.nav-item :not (:last-child ){
341
341
.nav-link {
342
342
border-right : 0 ;
343
+
344
+ @media screen and (max-width : 567px ) {
345
+ border-right : solid 1px #e9e6e4 ;
346
+ }
343
347
}
344
348
}
345
349
}
@@ -488,6 +492,11 @@ header {
488
492
z-index : 1 ;
489
493
}
490
494
495
+ .comment-line {
496
+ width : calc (100% - 180px );
497
+ line-height : 1 ;
498
+ }
499
+
491
500
.post-preview ,
492
501
.discussion-comments {
493
502
blockquote {
@@ -529,3 +538,9 @@ header {
529
538
left : 50% ;
530
539
transform : translate (-50% , -50% );
531
540
}
541
+
542
+ .author-name {
543
+ line-height : 1 ;
544
+ word-break : break-all ;
545
+ }
546
+
You can’t perform that action at this time.
0 commit comments