Skip to content

Commit

Permalink
wc: Fix application logo height in custom-navbar #TASK-7117
Browse files Browse the repository at this point in the history
  • Loading branch information
jmjuanes committed Oct 21, 2024
1 parent 646ce87 commit d0840e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/webcomponents/commons/layouts/custom-navbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ export default class CustomNavBar extends LitElement {
<div class="navbar-brand d-flex justify-content-center align-items-center me-n1" style="height: 2.5rem;">
<!-- Application logo provided -->
${this.app?.logo ? html`
<img class="d-inline-block" src="${this.app?.logo}" alt="App logo">
<img class="d-inline-block" src="${this.app?.logo}" alt="App logo" style="height:1.3em;">
` : nothing}
<!-- No application logo provided -->
${!this.app?.logo && this.app?.name ? html`
Expand Down

0 comments on commit d0840e2

Please sign in to comment.