Merge pull request #7389 from svbergerem/fix-comment-mentions-spacing

Fix comment mentions spacing
This commit is contained in:
Benjamin Neff 2017-03-26 04:06:34 +02:00
commit a07bd94ec6
No known key found for this signature in database
GPG key ID: 971464C3F1A90194

View file

@ -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
}
}