Skip to content

Commit

Permalink
docs(DividerExampleVerticalForm)
Browse files Browse the repository at this point in the history
- fix: addition of column in example to demonstrate correct responsiveness
  • Loading branch information
cmlwood committed Feb 24, 2021
1 parent ff70355 commit 8a275ac
Showing 1 changed file with 5 additions and 4 deletions.
Expand Up @@ -3,7 +3,7 @@ import { Button, Divider, Form, Grid, Segment } from 'semantic-ui-react'

const DividerExampleVerticalForm = () => (
<Segment placeholder>
<Grid columns={2} relaxed='very' stackable>
<Grid columns={3} relaxed='very' stackable>
<Grid.Column>
<Form>
<Form.Input
Expand All @@ -18,17 +18,18 @@ const DividerExampleVerticalForm = () => (
label='Password'
type='password'
/>

<Button content='Login' primary />
</Form>
</Grid.Column>

<Grid.Column>
<Divider vertical>Or</Divider>
</Grid.Column>

<Grid.Column verticalAlign='middle'>
<Button content='Sign up' icon='signup' size='big' />
</Grid.Column>
</Grid>

<Divider vertical>Or</Divider>
</Segment>
)

Expand Down

0 comments on commit 8a275ac

Please sign in to comment.