Skip to content

Commit

Permalink
Fix loading spinner and X button not aligned
Browse files Browse the repository at this point in the history
  • Loading branch information
dacianavram committed Jul 24, 2023
1 parent e2ccaab commit 432cc7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions shell/src/shared/molecules/NextNav/Components/NavPill.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function clickHandler() {
<div class="h-12 col-start-2 place-self-center">
<div class="flex flex-row">
<div
class="flex justify-center flex-shrink-0 w-24 -mr-8 rounded-l-full cursor-pointer text-primary h-11"
class="flex justify-center flex-shrink-0 w-24 -mr-11 rounded-l-full cursor-pointer text-primary h-11"
class:bg-cpurple="{props && props.left}"
role="presentation"
on:click="{clickHandler}">
Expand All @@ -26,7 +26,7 @@ function clickHandler() {
<div class="absolute right-0.5 w-full text-center top-1.5 text-secondary font-heading">{$unreadEventInbox.events.length}</div>
</div>
{:else}
<div class="flex flex-col self-center justify-center h-full mr-3">
<div class="flex flex-col self-center justify-center h-full mr-5">
<svelte:component this="{props.left.component}" {...props.left.props} on:menuButton />
</div>
{/if}
Expand Down

0 comments on commit 432cc7a

Please sign in to comment.