File tree Expand file tree Collapse file tree 3 files changed +16
-2
lines changed
Expand file tree Collapse file tree 3 files changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ const AuthorLabel = ({
5050
5151 const authorName = useMemo ( ( ) => (
5252 < span
53- className = { classNames ( 'mr-1.5 font-size-14 font-style font-weight-500' , {
53+ className = { classNames ( 'mr-1.5 font-size-14 font-style font-weight-500 author-name ' , {
5454 'text-gray-700' : isRetiredUser ,
5555 'text-primary-500' : ! authorLabelMessage && ! isRetiredUser ,
5656 } ) }
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ const CommentsView = ({ endorsed }) => {
3636
3737 const handleDefinition = useCallback ( ( message , commentsLength ) => (
3838 < 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"
4040 role = "heading"
4141 aria-level = "2"
4242 >
Original file line number Diff line number Diff line change @@ -340,6 +340,10 @@ header {
340340 .nav-item :not (:last-child ){
341341 .nav-link {
342342 border-right : 0 ;
343+
344+ @media screen and (max-width : 567px ) {
345+ border-right : solid 1px #e9e6e4 ;
346+ }
343347 }
344348 }
345349 }
@@ -488,6 +492,11 @@ header {
488492 z-index : 1 ;
489493}
490494
495+ .comment-line {
496+ width : calc (100% - 180px );
497+ line-height : 1 ;
498+ }
499+
491500.post-preview ,
492501.discussion-comments {
493502 blockquote {
@@ -529,3 +538,8 @@ header {
529538 left : 50% ;
530539 transform : translate (-50% , -50% );
531540}
541+
542+ .author-name {
543+ line-height : 1 ;
544+ word-break : break-all ;
545+ }
You can’t perform that action at this time.
0 commit comments