-
-
Notifications
You must be signed in to change notification settings - Fork 155
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
move svgs to assets and added product hunt button (#136)
- Loading branch information
1 parent
4c03968
commit fd7e13b
Showing
5 changed files
with
68 additions
and
30 deletions.
There are no files selected for viewing
File renamed without changes
File renamed without changes
File renamed without changes
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 |
---|---|---|
@@ -1,13 +1,16 @@ | ||
import { makeStyles } from "@material-ui/core"; | ||
import { makeStyles } from '@material-ui/core'; | ||
|
||
export const getAppBarStyles = makeStyles((theme) => ({ | ||
title: { | ||
flexGrow: 1, | ||
flexGrow: 1, | ||
}, | ||
themeIcon:{ | ||
backgroundColor:"transparent !important", | ||
height:"38px", | ||
width:"38px", | ||
boxShadow:"0px 0px 0.5px 0.5px #6e7681" | ||
} | ||
})); | ||
themeIcon: { | ||
backgroundColor: 'transparent !important', | ||
height: '38px', | ||
width: '38px', | ||
boxShadow: '0px 0px 0.5px 0.5px #6e7681', | ||
}, | ||
productHuntBtn: { | ||
flexGrow: 1, | ||
}, | ||
})); |