We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c0a212 commit 33a2845Copy full SHA for 33a2845
packages/orbit-components/src/Tabs/components/Tab/index.tsx
@@ -35,7 +35,7 @@ const Tab = ({
35
"font-base font-medium",
36
"rounded-t-100",
37
"duration-fast transition-colors ease-in-out",
38
- "px-400",
+ "px-400 focus:z-default",
39
compact ? "text-normal py-[5px] leading-normal" : "text-large leading-large py-[9px]",
40
disabled && "cursor-not-allowed opacity-50",
41
!disabled && [
@@ -68,6 +68,7 @@ const Tab = ({
68
onClick(ev);
69
} else setSelected(index);
70
}}
71
+ id={`tab-${index}`}
72
type="button"
73
disabled={disabled}
74
role="tab"
0 commit comments