fix: menu colors

This commit is contained in:
Ruben Fiszel
2024-01-13 15:34:43 +01:00
parent bcbea217c7
commit d8ccf51b38
@@ -13,10 +13,8 @@
<Popover appearTimeout={0} disappearTimeout={0} class="w-full" disablePopup={!isCollapsed}>
<button
class={twMerge(
'group flex items-center px-2 py-2 font-light rounded-md h-8 gap-3 w-full',
lightMode
? 'text-primary hover:bg-surface-hover '
: ' hover:bg-[#34363c] text-primary-inverse',
'group flex items-center px-2 py-2 font-light rounded-md h-8 gap-3 w-full text-primary ',
lightMode ? 'hover:bg-surface-hover ' : ' hover:bg-[#34363c]',
'transition-all',
$$props.class
)}
@@ -26,24 +24,13 @@
<svelte:component
this={icon}
size={16}
class={twMerge(
'flex-shrink-0',
lightMode
? 'text-primary group-hover:text-secondary'
: 'text-primary-inverse group-hover:text-secondary-inverse',
'transition-all'
)}
class={twMerge('flex-shrink-0 text-primary group-hover:text-secondary', 'transition-all')}
/>
{/if}
{#if !isCollapsed && label}
<span
class={twMerge(
'whitespace-pre truncate',
lightMode ? 'text-primary' : 'text-primary-inverse',
'transition-all',
$$props.class
)}
class={twMerge('whitespace-pre truncate text-primary', 'transition-all', $$props.class)}
>
{label}
</span>