From f5c937b9cf786a1b83690b047d752720e2b05ad9 Mon Sep 17 00:00:00 2001 From: Steffen van Bergerem Date: Fri, 24 Mar 2017 13:00:11 +0100 Subject: [PATCH] Fix comment mentions spacing --- app/assets/stylesheets/comments.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app/assets/stylesheets/comments.scss b/app/assets/stylesheets/comments.scss index 54d5f1973..4fae714a7 100644 --- a/app/assets/stylesheets/comments.scss +++ b/app/assets/stylesheets/comments.scss @@ -64,4 +64,12 @@ min-height: 35px; box-shadow: none; } + + .twitter-typeahead { + // typeahead sets this to `display: inline-block` which adds additional space between + // the comment textarea and the submit button. + // scss-lint:disable ImportantRule + display: block !important; + // scss-lint:enable ImportantRule + } }