diff --git a/app/static/styles.css b/app/static/styles.css index 9697cc5b..505fec8e 100644 --- a/app/static/styles.css +++ b/app/static/styles.css @@ -1384,6 +1384,13 @@ time { margin-left: auto; /* pull right */ font-size: 87%; } +.comment .comment_actions .dropdown-item { + white-space: unset; + line-height: 30px; +} +.comment .comment_actions .dropdown-item:active { + line-height: 26px; +} .comment .replies { margin-top: 0; border-left: solid 1px #ddd; diff --git a/app/static/styles.scss b/app/static/styles.scss index 6c4b53f9..aa93518c 100644 --- a/app/static/styles.scss +++ b/app/static/styles.scss @@ -1046,6 +1046,15 @@ time { margin-left: auto; /* pull right */ font-size: 87%; } + + .dropdown-item { + white-space: unset; + line-height: 30px; + + &:active { + line-height: 26px; + } + } } .replies {