remove nbsp that can cause glitch on load

This commit is contained in:
Janos Lengyel 2023-07-11 11:26:32 +02:00 committed by Janos Lengyel
commit 148c8a7d14

View file

@ -95,9 +95,14 @@
on:click on:click
> >
{#if company} {#if company}
<span class:bx--header__name--prefix="{true}">{company}&nbsp;</span> <span class:bx--header__name--prefix="{true}">{company}</span>
{/if} {/if}
<slot name="platform">{platformName}</slot> <slot name="platform">{platformName}</slot>
</a> </a>
<slot /> <slot />
</header> </header>
<style>
.bx--header__name--prefix {
padding-right: 0.2rem;
}
</style>