Skip to content

Commit

Permalink
Fix tab style exception
Browse files Browse the repository at this point in the history
  • Loading branch information
kerwin612 committed Mar 7, 2022
1 parent 278982c commit 79c1464
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/components/card/tabs.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<ul class="tabs" transition:fade>
{#each tabs as tab}
<div
class="tab tab-lifted text-primary-content {activeTabID === tab.id ? 'tab-active' : ''}"
class="tab tab-lifted {activeTabID === tab.id ? 'tab-active' : 'text-primary-content'}"
on:click|stopPropagation={() => toggleTabs(tab)}>
<i class="mr-1 {tab.icon}" />
{tab.title}
Expand Down

0 comments on commit 79c1464

Please sign in to comment.