diff --git a/addons/a11y/src/components/Panel.js b/addons/a11y/src/components/Panel.js index f15eda0d5ba..d56356f63c9 100644 --- a/addons/a11y/src/components/Panel.js +++ b/addons/a11y/src/components/Panel.js @@ -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 { }, ]} /> - + ) : null; }