diff --git a/app/assets/stylesheets/pages/container_registry.scss b/app/assets/stylesheets/pages/container_registry.scss
index 92543d7d7144f3cbcb0b4fe5c127b6665853d8f9..3266714396ef9b9e00d4976438681960dc3dd75f 100644
--- a/app/assets/stylesheets/pages/container_registry.scss
+++ b/app/assets/stylesheets/pages/container_registry.scss
@@ -8,7 +8,7 @@
 
 .container-image-head {
   padding: 0 16px;
-  line-height: 4;
+  line-height: 4em;
 }
 
 .table.tags {
diff --git a/app/views/projects/registry/repositories/_image.html.haml b/app/views/projects/registry/repositories/_image.html.haml
index b0b09354e029f430018ce8f14419b1431c3c6487..d183ce34a3a942867267d053a3be2802d2704b73 100644
--- a/app/views/projects/registry/repositories/_image.html.haml
+++ b/app/views/projects/registry/repositories/_image.html.haml
@@ -1,7 +1,7 @@
 .container-image.js-toggle-container
   .container-image-head
     = link_to "#", class: "js-toggle-button" do
-      = icon("chevron-down")
+      = icon('chevron-down', 'aria-hidden': 'true')
       = escape_once(image.path)
 
     = clipboard_button(clipboard_text: "docker pull #{image.path}")
@@ -12,7 +12,7 @@
                 title: 'Remove repository',
                 data: { confirm: 'Are you sure?' },
                 method: :delete do
-        = icon('trash cred')
+        = icon('trash cred', 'aria-hidden': 'true')
 
   .container-image-tags.js-toggle-content.hide
     - if image.has_tags?
@@ -28,6 +28,5 @@
                 %th
           = render partial: 'tag', collection: image.tags
     - else
-      %li
-        .nothing-here-block No tags in Container Registry for this container image.
+      .nothing-here-block No tags in Container Registry for this container image.