mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +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,
|
color: theme.color.negative,
|
||||||
}));
|
}));
|
||||||
|
|
||||||
|
const StyledActionBar = styled(ActionBar)({
|
||||||
|
position: 'fixed',
|
||||||
|
bottom: 10,
|
||||||
|
right: 10,
|
||||||
|
});
|
||||||
|
|
||||||
class A11YPanel extends Component {
|
class A11YPanel extends Component {
|
||||||
static propTypes = {
|
static propTypes = {
|
||||||
active: PropTypes.bool.isRequired,
|
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>
|
</Fragment>
|
||||||
) : null;
|
) : null;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user