diff options
author | Douwe Maan <douwe@gitlab.com> | 2015-12-02 14:49:46 +0100 |
---|---|---|
committer | Douwe Maan <douwe@gitlab.com> | 2015-12-02 14:49:46 +0100 |
commit | 9ea72430921efaa4a1a79ea21c54763bda8bba78 (patch) | |
tree | 5b6393044d1d3099f415d2b0dda72e6d72cd2c6a /app/views/projects/_readme.html.haml | |
parent | 1c595681e5b60cfdf402abc6fd43c282897b6260 (diff) | |
download | gitlab-ce-9ea72430921efaa4a1a79ea21c54763bda8bba78.tar.gz |
Fix padding of no readme and empty repo messages
Diffstat (limited to 'app/views/projects/_readme.html.haml')
-rw-r--r-- | app/views/projects/_readme.html.haml | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/app/views/projects/_readme.html.haml b/app/views/projects/_readme.html.haml index b5ef0aca540..d1191928d4f 100644 --- a/app/views/projects/_readme.html.haml +++ b/app/views/projects/_readme.html.haml @@ -7,15 +7,16 @@ = cache(readme_cache_key) do = render_readme(readme) - else - %h3.page-title - This project does not have README yet - - if can?(current_user, :push_code, @project) - %p.slead - A - %code README - file contains information about other files in a repository and is commonly - distributed with computer software, forming part of its documentation. - %br - We recommend you to - = link_to "add README", new_readme_path, class: 'underlined-link' - file to the repository and GitLab will render it here instead of this message. + .gray-content-block.second-block.center + %h3.page-title + This project does not have README yet + - if can?(current_user, :push_code, @project) + %p + A + %code README + file contains information about other files in a repository and is commonly + distributed with computer software, forming part of its documentation. + %p + We recommend you to + = link_to "add README", new_readme_path, class: 'underlined-link' + file to the repository and GitLab will render it here instead of this message. |