Skip to content

Commit

Permalink
docs(Layouts): fix examples with incorrect props (#3227)
Browse files Browse the repository at this point in the history
docs(Layouts): fix examples with incorrect props
  • Loading branch information
AlanFoster authored and layershifter committed Oct 20, 2018
1 parent 845c347 commit 199eef6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions docs/src/layouts/GridLayout.js
Original file line number Diff line number Diff line change
Expand Up @@ -277,17 +277,17 @@ const GridLayout = () => (
</p>

<Grid>
<Grid.Column verticalAlign='right' width={8}>
<Grid.Column textAlign='right' width={8}>
right aligned column
</Grid.Column>
<Grid.Column verticalAlign='left' width={8}>
<Grid.Column textAlign='left' width={8}>
left aligned column
</Grid.Column>
<Grid.Row columns={2} verticalAlign='center'>
<Grid.Row columns={2} textAlign='center'>
<Grid.Column>center aligned row</Grid.Column>
<Grid.Column>center aligned row</Grid.Column>
</Grid.Row>
<Grid.Column verticalAlign='right' width={16}>
<Grid.Column textAlign='right' width={16}>
right aligned column
</Grid.Column>
</Grid>
Expand Down
4 changes: 2 additions & 2 deletions docs/src/layouts/ResponsiveLayout.js
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ const ResponsiveLayout = () => (
<Item.Extra>
<Button floated='right' primary>
Primary
<Icon name='right chevron' />
<Icon name='chevron right' />
</Button>
<Label>Limited</Label>
</Item.Extra>
Expand All @@ -598,7 +598,7 @@ const ResponsiveLayout = () => (
<Item.Extra>
<Button primary floated='right'>
Primary
<Icon name='right chevron' />
<Icon name='chevron right' />
</Button>
</Item.Extra>
</Item.Content>
Expand Down
6 changes: 3 additions & 3 deletions docs/src/layouts/ThemingLayout.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const ThemingLayout = () => (
padded
stackable
style={{ margin: '-1.5em', width: 400 }}
textAlign='middle'
textAlign='center'
>
<Grid.Column color='red' style={{ margin: '0.5em', height: 50 }}>
Red
Expand Down Expand Up @@ -224,8 +224,8 @@ const ThemingLayout = () => (
<Button size='tiny'>Tiny</Button>
<Button size='small'>Small</Button>
<Button size='large'>Large</Button>
<Button size='big button'>Big</Button>
<Button size='huge button'>Huge</Button>
<Button size='big'>Big</Button>
<Button size='huge'>Huge</Button>
<Button size='massive'>Massive</Button>

<Divider />
Expand Down

0 comments on commit 199eef6

Please sign in to comment.