Skip to content

Commit

Permalink
Merge pull request #2745 from storybooks/ndelangen/fix-a11y-addons-a11y
Browse files Browse the repository at this point in the history
CHANGE label on button to more descriptive name && CHANGE uppercase via CSS
  • Loading branch information
ndelangen authored Jan 13, 2018
2 parents 5143028 + 71c79ec commit 3416311
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions addons/a11y/src/components/Report/RerunButton.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ const RerunButton = glamorous.button({
padding: '5px 10px',
borderRadius: '4px 0 0 0',
color: 'rgba(0, 0, 0, 0.5)',
textTransform: 'uppercase',
});

export default RerunButton;
2 changes: 1 addition & 1 deletion addons/a11y/src/components/Report/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const Report = ({ items, empty, passes }) => (
) : (
<span style={styles.empty}>{empty}</span>
)}
<RerunButton onClick={onRerunClick}>RE-RUN</RerunButton>
<RerunButton onClick={onRerunClick}>Re-run tests</RerunButton>
</Fragment>
);

Expand Down

0 comments on commit 3416311

Please sign in to comment.