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
>
{#if company}
<span class:bx--header__name--prefix="{true}">{company}&nbsp;</span>
<span class:bx--header__name--prefix="{true}">{company}</span>
{/if}
<slot name="platform">{platformName}</slot>
</a>
<slot />
</header>
<style>
.bx--header__name--prefix {
padding-right: 0.2rem;
}
</style>