diff --git a/app/assets/stylesheets/framework/tables.scss b/app/assets/stylesheets/framework/tables.scss
index 9d6a6c5b237b4d16aa47fea90f322da91586edc4..75b770ae5a275317887ed1f0cc53bf6af41abfd0 100644
--- a/app/assets/stylesheets/framework/tables.scss
+++ b/app/assets/stylesheets/framework/tables.scss
@@ -34,22 +34,6 @@ table {
         font-weight: normal;
         font-size: 15px;
         border-bottom: 1px solid $border-color;
-
-        .rotate {
-          height: 140px;
-          white-space: nowrap;
-          transform:
-                  /* Magic Numbers */
-                  translate(25px, 51px)
-                    /* 45 is really 360 - 45 */
-                  rotate(315deg);
-          width: 30px;
-        }
-
-        .rotate > div > span {
-          border-bottom: 1px solid #ccc;
-          padding: 5px 10px;
-        }
       }
 
       td {
diff --git a/app/views/layouts/nav/_project.html.haml b/app/views/layouts/nav/_project.html.haml
index b58d8270230069cc70cb660ae0e5a912df238c3e..f4797a85bb76fa51d8ebbda65284d6254561534c 100644
--- a/app/views/layouts/nav/_project.html.haml
+++ b/app/views/layouts/nav/_project.html.haml
@@ -39,7 +39,7 @@
           Commits
 
   - if project_nav_tab? :builds
-    = nav_link(controller: %w(ci_commits)) do
+    = nav_link(controller: %w(pipelines)) do
       = link_to project_pipelines_path(@project), title: 'Pipelines', class: 'shortcuts-builds' do
         = icon('ship fw')
         %span
diff --git a/app/views/projects/commit/_ci_commit.html.haml b/app/views/projects/commit/_ci_commit.html.haml
index 2ec3c809e1caeb6df6ae491ecf350d48e98c4079..cf101acbb53f3fc2d1959d34cbaef66d50776d35 100644
--- a/app/views/projects/commit/_ci_commit.html.haml
+++ b/app/views/projects/commit/_ci_commit.html.haml
@@ -20,7 +20,7 @@
       for commit
       = link_to ci_commit.short_sha, namespace_project_commit_path(@project.namespace, @project, ci_commit.sha), class: "monospace"
     - if ci_commit.duration > 0
-      took
+      in
       = time_interval_in_words ci_commit.duration
 
 - if ci_commit.yaml_errors.present?