Skip to content

Commit 22d5cb7

Browse files
committed
🐛 fix tabs missing border
1 parent e8ada38 commit 22d5cb7

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

packages/theme-nonepress/src/theme/Tabs/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ function TabList({
6969
<ul
7070
role="tablist"
7171
aria-orientation="horizontal"
72-
className={clsx("tabs tabs-list", className)}
72+
className={clsx("tabs tabs-list tabs-lifted", className)}
7373
>
7474
{tabValues.map(({ value, label, attributes }) => (
7575
<li

packages/theme-nonepress/src/theme/Tabs/styles.css

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414
&-item {
1515
--tab-border-color: transparent;
1616

17-
@apply transition-[color,background-color] duration-500;
18-
1917
&-active {
2018
--tab-border-color: oklch(var(--bc) / 10%);
2119
}

0 commit comments

Comments
 (0)