Skip to content

Commit

Permalink
fix: Fix Topbar Label Size - MEED-7543 - Meeds-io/meeds#273 (#4063)
Browse files Browse the repository at this point in the history
Prior to this change, the navigation button displayed in topbar was
having a small size comparing to top bar buttons. This change allow to
adjust the size of Topbar to be the same as other buttons displayed in
the Topbar.
  • Loading branch information
boubaker authored and exo-swf committed Sep 26, 2024
1 parent 01816b5 commit fea7d66
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
<% if (space == null) { %>
<% if (logoPath != null) { %>
<a id="UserHomePortalLink" href="<%=portalPath%>" class="pe-3 logoContainer">
<img src="<%=logoPath%>" class="<%=imageClass%>" alt="<%= logoTitle%>">
<img src="<%=logoPath%>" height="36px" width="auto" class="<%=imageClass%>" alt="<%=logoTitle%>">
</a>
<% } %>
<a href="<%=portalPath%>" title="<%=logoTitle%>"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<v-list-item-avatar
v-if="logoPath"
id="UserHomePortalLink"
size="30"
size="36"
class="tile my-0 spaceAvatar ms-0 me-3"
tile>
<v-img :src="logoPath" :alt="$t('space.avatar.img.alt',{0:logoTitle})" />
Expand Down

0 comments on commit fea7d66

Please sign in to comment.