Skip to content

Commit

Permalink
Merge pull request #937 from Abhishek9503/fix/fixed-req-save-btn-func…
Browse files Browse the repository at this point in the history
…tion

[staging] fix: Fixed overlapping username issue [123]
  • Loading branch information
itsmdasifraza authored Jun 3, 2024
2 parents 005f232 + ca9c393 commit 371a1d5
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions src/packages/@common/components/sidebar/SidebarProfileModal.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
showModal = !showModal;
}}
>
<div class="d-flex align-iems-center justify-content-center">
<div class="d-flex align-iems-center justify-content-center ">
{#if isHovered && item.hoveredLogo && !item.disabled}
<img src={item.hoveredLogo} alt={item.heading} />
{:else if isRouteActive && item.selectedLogo}
Expand Down Expand Up @@ -112,9 +112,16 @@
>
{user?.name[0]}
</div>
<div class="d-flex flex-column ms-1">
<div class="ellipsis">{user?.name}</div>
<div class="text-secondary-200 ellipsis">{user?.email}</div>
<div class="d-flex flex-column ms-1 ">
<div class="ellipsis"
style="max-width: 200px; ">
{user?.name}
</div>
<div
style="max-width: 200px; "
class="text-secondary-200 ellipsis">
{user?.email}
</div>
</div>
</div>
<button
Expand Down

0 comments on commit 371a1d5

Please sign in to comment.