diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-06-16 14:26:38 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-06-16 14:26:38 +0300 |
commit | 0014326ded8164bbbd12f8411c622d4ee9a1952f (patch) | |
tree | 6f9a6bda35e3d97c00ef1cc06009d676e36e1de8 /app | |
parent | 9220e3ef18dfaa9fed0e016b667d1b8c862cc5df (diff) | |
download | gitlab-ce-0014326ded8164bbbd12f8411c622d4ee9a1952f.tar.gz |
Small UI fix
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app')
-rw-r--r-- | app/views/projects/_home_panel.html.haml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/projects/_home_panel.html.haml b/app/views/projects/_home_panel.html.haml index 3851fd6c15b..81bb0e20a35 100644 --- a/app/views/projects/_home_panel.html.haml +++ b/app/views/projects/_home_panel.html.haml @@ -14,7 +14,7 @@ = render "shared/clone_panel" .project-home-extra.row - .col-md-8 + .col-md-7 .project-home-desc - if @project.description.present? = auto_link @project.description, link: :urls @@ -23,7 +23,7 @@ %strong= link_to 'Edit', edit_project_path - unless empty_repo - .col-md-4 + .col-md-5 .project-home-links = link_to pluralize(number_with_delimiter(@repository.commit_count), 'commit'), project_commits_path(@project, @ref || @repository.root_ref) = link_to pluralize(number_with_delimiter(@repository.branch_names.count), 'branch'), project_branches_path(@project) |