mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
Fix a11y ActionBar placement when scrolling
This commit is contained in:
parent
3a9b710b65
commit
239f2ac1fb
@ -33,6 +33,12 @@ const Violations = styled.span(({ theme }) => ({
|
||||
color: theme.color.negative,
|
||||
}));
|
||||
|
||||
const StyledActionBar = styled(ActionBar)({
|
||||
position: 'fixed',
|
||||
bottom: 10,
|
||||
right: 10,
|
||||
});
|
||||
|
||||
class A11YPanel extends Component {
|
||||
static propTypes = {
|
||||
active: PropTypes.bool.isRequired,
|
||||
@ -143,7 +149,10 @@ class A11YPanel extends Component {
|
||||
},
|
||||
]}
|
||||
/>
|
||||
<ActionBar key="actionbar" actionItems={[{ title: actionTitle, onClick: this.request }]} />
|
||||
<StyledActionBar
|
||||
key="actionbar"
|
||||
actionItems={[{ title: actionTitle, onClick: this.request }]}
|
||||
/>
|
||||
</Fragment>
|
||||
) : null;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user