fix(ui-shell): add space between company and platform name

This commit is contained in:
Eric Liu 2020-08-01 15:36:11 -07:00
commit 66bc076307

View file

@ -35,7 +35,7 @@
$: isSideNavOpen = winWidth >= 1056; $: isSideNavOpen = winWidth >= 1056;
$: ariaLabel = $: ariaLabel =
company + (uiShellAriaLabel || $$props["aria-label"] || platformName); company + " " + (uiShellAriaLabel || $$props["aria-label"] || platformName);
</script> </script>
<svelte:window bind:innerWidth={winWidth} /> <svelte:window bind:innerWidth={winWidth} />