Commit e75d0551 authored by Justin Ho's avatar Justin Ho

Fix Jira icon in sidebar too huge during page load

During page load, some of the CSS is not fully loaded
causing the Jira logo (which is an image) to be too big
and make the sidebar overflow. This change adds height,
width to the image to avoid this.
parent 48e6b011
= nav_link(path: sidebar_external_tracker_paths) do
= link_to project_integrations_jira_issues_path(@project) do
.nav-icon-container
= image_tag('logos/jira-gray.svg', class: "gl-w-5 gl-h-5")
= image_tag('logos/jira-gray.svg', height: 16, width: 16)
%span.nav-item-name.qa-settings-item#js-onboarding-settings-link
= s_('JiraService|Jira Issues')
......
---
title: Fix Jira icon in sidebar too huge during page load
merge_request: 55598
author:
type: fixed
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment