diff options
author | Jacob Schatz <jacobschatz@Jacobs-MBP.fios-router.home> | 2016-01-16 10:14:13 -0500 |
---|---|---|
committer | Jacob Schatz <jacobschatz@Jacobs-MBP.fios-router.home> | 2016-01-16 10:14:13 -0500 |
commit | c12bd5474e7c6caa9a2af4287cf25e84b47a6b74 (patch) | |
tree | 0b0d4bd9a823c025a3ec86eaca2339386a08f745 | |
parent | 5cd2f77769d968d10cc8e4371e88ff8be9f28c8c (diff) | |
download | gitlab-ce-c12bd5474e7c6caa9a2af4287cf25e84b47a6b74.tar.gz |
Search title was getting clipped horizontally.search-title-clipped
Fixed by adding height to search title css.
-rw-r--r-- | app/assets/stylesheets/pages/search.scss | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/assets/stylesheets/pages/search.scss b/app/assets/stylesheets/pages/search.scss index 3aaa96da609..bdcf1897522 100644 --- a/app/assets/stylesheets/pages/search.scss +++ b/app/assets/stylesheets/pages/search.scss @@ -3,6 +3,10 @@ border-bottom: 1px solid #DDD; padding-bottom: 15px; margin-bottom: 15px; + + .term { + height: 22px; + } } } |