Skip to content

Commit

Permalink
docs: fix get-started
Browse files Browse the repository at this point in the history
  • Loading branch information
cgestes committed May 21, 2015
1 parent 213585f commit 1a6026e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion docs/src/app/components/pages/get-started.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,19 @@ var mui = require('mui');
var CodeBlock = require('../code-example/code-block.jsx');
var FullWidthSection = require('../full-width-section.jsx');
var Spacing = mui.Styles.Spacing;
var Typography = mui.Styles;

class GetStarted extends React.Component {

getStyles() {
var canvasColor = this.context.muiTheme.palette.canvasColor;
return {
root: {
paddingTop: Spacing.desktopKeylineIncrement
},
fullWidthSection: {
maxWidth: '650px',
margin: '0 auto'
margin: '0 auto'
},
headline: {
fontSize: '24px',
Expand Down Expand Up @@ -141,4 +143,8 @@ class GetStarted extends React.Component {

}

GetStarted.contextTypes = {
muiTheme: React.PropTypes.object
}

module.exports = GetStarted;

0 comments on commit 1a6026e

Please sign in to comment.