Fix a11y ActionBar placement when scrolling

This commit is contained in:
domyen 2019-02-26 14:01:05 -05:00
parent 3a9b710b65
commit 239f2ac1fb

View File

@ -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;
}