@@ -15,7 +15,7 @@ import './settings.css';
1515
1616const Settings = ( { verifyGithubToken, verifyBitlyToken, resetTokens } ) => {
1717 return (
18- < div className = "settings" >
18+ < div className = "settings-area " >
1919 < AppBar
2020 position = "static"
2121 color = "default"
@@ -34,29 +34,35 @@ const Settings = ({ verifyGithubToken, verifyBitlyToken, resetTokens }) => {
3434 < Typography variant = "h6" > Settings</ Typography >
3535 </ Toolbar >
3636 </ AppBar >
37- < div className = "content" >
38- < TokenInput
39- onSubmit = { verifyGithubToken }
40- name = "GitHub"
41- instruction = "Generate a personal access token from GitHub. This access token should have the scope to 'Create Gists'"
42- />
43- < TokenInput
44- onSubmit = { verifyBitlyToken }
45- name = "Bitly"
46- instruction = "Genrate a Generic Access token from Bitly"
47- />
48- < div className = "aciton" >
49- < button onClick = { ( ) => resetTokens ( ) } className = "btn-reset" >
50- Reset
51- </ button >
52- </ div >
53- < div className = "privacy" >
54- < p >
55- < strong >
56- We don't store any of these keys. Everything is done
57- locally. Thus your information is kept safe.
58- </ strong >
59- </ p >
37+ < div className = "settings" >
38+ < div className = "content" >
39+ < TokenInput
40+ onSubmit = { verifyGithubToken }
41+ name = "GitHub"
42+ instruction = "Generate a personal access token from GitHub. This access token should have the scope to 'Create Gists'"
43+ />
44+ < TokenInput
45+ onSubmit = { verifyBitlyToken }
46+ name = "Bitly"
47+ instruction = "Genrate a Generic Access token from Bitly"
48+ />
49+ < div className = "aciton" >
50+ < button
51+ onClick = { ( ) => resetTokens ( ) }
52+ className = "btn-reset"
53+ >
54+ Reset
55+ </ button >
56+ </ div >
57+ < div className = "privacy" >
58+ < p >
59+ < strong >
60+ We don't store any of these keys. Everything is
61+ done locally. Thus your information is kept
62+ safe.
63+ </ strong >
64+ </ p >
65+ </ div >
6066 </ div >
6167 </ div >
6268 </ div >
0 commit comments