Skip to content

Commit

Permalink
fix(buttons): new focus style applied to all buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
bmenant committed Mar 2, 2019
1 parent b5de01c commit 74dbe16
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 4 additions & 0 deletions src/components/atoms/Button.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,8 @@ export default styled.button`
&:hover {
color: ${props => props.theme.activeColor}
}
&:focus {
outline: 1px dotted ${props => props.theme.activeColor};
}
`;
4 changes: 0 additions & 4 deletions src/components/atoms/Feedbacks.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,5 @@ export default styled.div`
fill: ${props => props.theme.secondaryColor};
}
}
&:focus {
outline: 1px dotted ${props => props.theme.activeColor};
}
}
`;

0 comments on commit 74dbe16

Please sign in to comment.