Skip to content

Commit

Permalink
fix(portal-next): allow rectangular company logos in header + footer
Browse files Browse the repository at this point in the history
  • Loading branch information
jourdiw committed Oct 17, 2024
1 parent 3b2dbd6 commit 22e9caf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
-->
<a class="company-logo" [routerLink]="['']">
<img i18n-alt="@@logo" [src]="logo" height="36" width="36" alt="Company logo" (error)="updateLogo()" />
<img i18n-alt="@@logo" [src]="logo" alt="Company logo" (error)="updateLogo()" />
</a>
<div class="m3-title-medium">{{ title }}</div>
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
white-space: nowrap;
}

.company-logo {
height: 36px;
.company-logo > img {
display: flex;
max-height: 36px;
}

0 comments on commit 22e9caf

Please sign in to comment.