mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
Fix tab highlighting in a11y
This commit is contained in:
parent
91e7e807e9
commit
e5ced0da0b
@ -17,13 +17,6 @@ const List = styled.div(({ theme }) => ({
|
||||
}));
|
||||
|
||||
const Item = styled.button(
|
||||
({ active, theme }) =>
|
||||
active
|
||||
? {
|
||||
opacity: 1,
|
||||
borderBottom: `3px solid ${theme.color.secondary}`,
|
||||
}
|
||||
: {},
|
||||
({ theme }) => ({
|
||||
textDecoration: 'none',
|
||||
padding: '10px 15px',
|
||||
@ -41,7 +34,14 @@ const Item = styled.button(
|
||||
outline: '0 none',
|
||||
borderBottom: `3px solid ${theme.color.secondary}`,
|
||||
},
|
||||
})
|
||||
}),
|
||||
({ active, theme }) =>
|
||||
active
|
||||
? {
|
||||
opacity: 1,
|
||||
borderBottom: `3px solid ${theme.color.secondary}`,
|
||||
}
|
||||
: {}
|
||||
);
|
||||
|
||||
class Tabs extends Component {
|
||||
|
Loading…
x
Reference in New Issue
Block a user