Skip to content

Commit

Permalink
fix: border-radius in now applied to all tabs (tabs-boxed) (#1626)
Browse files Browse the repository at this point in the history
  • Loading branch information
ffranchina committed Feb 22, 2023
1 parent 1b39afb commit 0c648f2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/styled/tab.css
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,10 @@
}
.tabs-boxed {
@apply bg-base-200 p-1 rounded-btn;
.tab {
@apply rounded-btn;
}
.tab-active {
@apply bg-primary text-primary-content rounded-btn hover:text-primary-content;
@apply bg-primary text-primary-content hover:text-primary-content;
}
}

0 comments on commit 0c648f2

Please sign in to comment.