Skip to content

Commit

Permalink
feat: up
Browse files Browse the repository at this point in the history
  • Loading branch information
AllanOliveiraM committed Mar 27, 2023
1 parent 220148f commit c91a8da
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"react",
"typescript"
],
"version": "2.1.21",
"version": "2.1.22",
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
Expand Down
16 changes: 10 additions & 6 deletions src/components/atoms/Button/Button.ts
Original file line number Diff line number Diff line change
Expand Up @@ -281,18 +281,22 @@ const Button = styled.buttonBox<ButtonProps>`
box-shadow: rgba(0, 0, 0, 0.2) 0px 7px 8px -4px, rgba(0, 0, 0, 0.08) 0px 12px 17px 2px;
}
&:active {
transform: scale(0.98);
box-shadow: rgba(0, 0, 0, 0.4) 0px 5px 5px -3px, rgba(0, 0, 0, 0.14) 0px 8px 10px 1px,
rgba(0, 0, 0, 0.12) 0px 3px 14px 2px;
}
&:focus {
outline-width: 1px !important;
outline-style: solid !important;
outline-color: systemPrimary !important;
}
&:active {
outline-width: none !important;
outline-style: none !important;
outline-color: none !important;
transform: scale(0.98);
box-shadow: rgba(0, 0, 0, 0.4) 0px 5px 5px -3px, rgba(0, 0, 0, 0.14) 0px 8px 10px 1px,
rgba(0, 0, 0, 0.12) 0px 3px 14px 2px;
}
${sizeVariant}
${modeVariant}
${colorModeVariant}
Expand Down

0 comments on commit c91a8da

Please sign in to comment.