Skip to content

Commit 38d409c

Browse files
committed
feat(buttons): add fork me on github and IYS button
1 parent aa0cb6e commit 38d409c

File tree

5 files changed

+70
-0
lines changed

5 files changed

+70
-0
lines changed

public/logo.png

13.3 KB
Loading

src/component/github-button.js

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
import React from 'react';
2+
import { withStyles } from '@material-ui/core/styles';
3+
4+
const styles = () => ({
5+
image: {
6+
position: 'fixed',
7+
top: 0,
8+
right: 0,
9+
boder: 0,
10+
zIndex: 2000,
11+
},
12+
});
13+
14+
const GithubButton = (props) => (
15+
<a
16+
href="https://github.com/in-your-saas/material-ui-theme-editor"
17+
rel="noopener noreferrer"
18+
target="_blank"
19+
>
20+
<img
21+
className={props.classes.image}
22+
src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png"
23+
alt="Fork me on GitHub"
24+
/>
25+
</a>
26+
);
27+
28+
export default withStyles(styles)(GithubButton);

src/component/logo-button.js

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
import React from 'react';
2+
import { withStyles } from '@material-ui/core/styles';
3+
4+
const styles = (theme) => ({
5+
root: {
6+
display: 'block',
7+
textAlign: 'center',
8+
padding: theme.spacing.unit,
9+
paddingBottom: 0,
10+
},
11+
image: {
12+
maxWidth: 100,
13+
},
14+
});
15+
16+
class LogoButton extends React.PureComponent {
17+
render() {
18+
return (
19+
<a
20+
className={this.props.classes.root}
21+
href="https://www.inyoursaas.io/"
22+
rel="noopener noreferrer"
23+
target="_blank"
24+
>
25+
<img
26+
alt="In Your Saas Logo"
27+
className={this.props.classes.image}
28+
src="logo.png"
29+
/>
30+
</a>
31+
);
32+
}
33+
}
34+
35+
export default withStyles(styles)(LogoButton);

src/component/section-edition.js

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import React from 'react';
22
import cn from 'classnames';
33
import { withStyles } from '@material-ui/core/styles';
44

5+
import LogoButton from './logo-button';
56
import PaletteEditionCard from './palette-edition-card';
67

78
const styles = (theme) => ({
@@ -11,6 +12,9 @@ const styles = (theme) => ({
1112
card: {
1213
margin: theme.spacing.unit,
1314
},
15+
logo: {
16+
maxWidth: 150,
17+
},
1418
});
1519

1620
const paletteFields = {
@@ -63,6 +67,7 @@ class SectionEdition extends React.PureComponent {
6367
const { classes, rootClassName } = this.props;
6468
return (
6569
<aside className={cn(classes.root, rootClassName)}>
70+
<LogoButton />
6671
<PaletteEditionCard
6772
label="Common colors"
6873
name="common"

src/screen/editor.js

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { createMuiTheme, withStyles } from '@material-ui/core/styles';
33
import SectionEdition from '../component/section-edition';
44
import SectionPreview from '../component/section-preview';
55
import DownloadButton from '../component/download-button';
6+
import GithubButton from '../component/github-button';
67

78
const styles = (theme) => ({
89
root: {
@@ -42,6 +43,7 @@ class Editor extends React.Component {
4243
const { classes } = this.props;
4344
return (
4445
<main className={classes.root}>
46+
<GithubButton />
4547
<SectionEdition
4648
rootClassName={classes.edition}
4749
onChange={this.handleChangeTheme}

0 commit comments

Comments
 (0)