Skip to content

Commit

Permalink
fix(button): focus boxshadow added
Browse files Browse the repository at this point in the history
  • Loading branch information
cabutler10 committed May 7, 2019
1 parent 2334b24 commit 927f2c0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ jobs:
- attach_workspace:
at: ~/project
- node/with-cache:
cache-version: v2
cache-version: v4
steps:
- run:
name: Yarn install
command: yarn
command: yarn install
- run:
name: Run all tests
command: yarn test
Expand Down
3 changes: 2 additions & 1 deletion src/elements/button/_button.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
display: inline-block;
border: 0;
background: transparent;
outline: 0;
text-align: center;
vertical-align: top;
outline: 0;
cursor: pointer;
min-height: 3rem;
padding: 0;
Expand All @@ -22,6 +22,7 @@
&:focus,
&.#{$prefix}button-primary--hover {
background-color: themed('hover');
box-shadow: 0 0 5px 1px themed('primary');
}
}
&:disabled,
Expand Down

0 comments on commit 927f2c0

Please sign in to comment.