-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
40cf3d1
commit b2ac545
Showing
16 changed files
with
1,948 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import { styled, Button as MaterialButton } from "@material-ui/core" | ||
|
||
export const Button = styled(MaterialButton)(({ theme }) => ({ | ||
"fontSize": "14px", | ||
"justifyItems": "center", | ||
"color": "#000", | ||
"boxShadow": "0px 0px 7px -2px rgba(0, 0, 0, 0.2)", | ||
"transition": ".15s ease-in", | ||
"background": theme.palette.secondary.main, | ||
"textTransform": "none", | ||
"borderRadius": 4, | ||
"padding": "8px 15px", | ||
"marginRight": "8px", | ||
|
||
"&$disabled": { | ||
boxShadow: "none" | ||
}, | ||
|
||
"&:hover": { | ||
boxShadow: "0px 0px 7px -2px rgba(0, 0, 0, 0.2)", | ||
backgroundColor: "#62eda5 !important", | ||
transition: ".15s ease-in" | ||
}, | ||
|
||
["@media (max-width:1030px)"]: { | ||
fontSize: "14px" | ||
} | ||
})) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.