Skip to content

Commit

Permalink
Updated text in Section Positions (#247)
Browse files Browse the repository at this point in the history
Signed-off-by: AbhishekReddy1127 <[email protected]>

Signed-off-by: AbhishekReddy1127 <[email protected]>
  • Loading branch information
AbhishekReddy1127 authored Jan 24, 2023
1 parent db0d86b commit eaf3aba
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src-docs/src/views/flex/flex_align_center.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ export default () => (
<p>tall</p>
<p>item</p>
</OuiFlexItem>
<OuiFlexItem>I am vertically centered!</OuiFlexItem>
<OuiFlexItem>I am vertically centered</OuiFlexItem>
</OuiFlexGroup>
);
2 changes: 1 addition & 1 deletion src-docs/src/views/flex/flex_grow_zero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ import { OuiFlexGroup, OuiFlexItem } from '../../../../src/components/flex';
export default () => (
<OuiFlexGroup>
<OuiFlexItem grow={false}>This item won&rsquo;t grow</OuiFlexItem>
<OuiFlexItem>But this item will.</OuiFlexItem>
<OuiFlexItem>this item will</OuiFlexItem>
</OuiFlexGroup>
);
2 changes: 1 addition & 1 deletion src-docs/src/views/flex/flex_item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { OuiFlexGroup, OuiFlexItem } from '../../../../src/components/flex';
export default () => (
<OuiFlexGroup>
<OuiFlexItem>
<OuiButton fill>Buttons will widen</OuiButton>
<OuiButton fill>buttons will span</OuiButton>
</OuiFlexItem>
<OuiFlexItem>
<div>
Expand Down
2 changes: 1 addition & 1 deletion src-docs/src/views/flex/flex_justify.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ import { OuiFlexGroup, OuiFlexItem } from '../../../../src/components';

export default () => (
<OuiFlexGroup justifyContent="spaceAround">
<OuiFlexItem grow={false}>I&rsquo;m a single centered item!</OuiFlexItem>
<OuiFlexItem grow={false}>I&rsquo;m a centered item</OuiFlexItem>
</OuiFlexGroup>
);
4 changes: 2 additions & 2 deletions src-docs/src/views/flex/flex_justify_between.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { OuiFlexGroup, OuiFlexItem } from '../../../../src/components';

export default () => (
<OuiFlexGroup justifyContent="spaceBetween">
<OuiFlexItem grow={false}>One here on the left.</OuiFlexItem>
<OuiFlexItem grow={false}>The other over here on the right.</OuiFlexItem>
<OuiFlexItem grow={false}>One here on the left</OuiFlexItem>
<OuiFlexItem grow={false}>The other over here on the right</OuiFlexItem>
</OuiFlexGroup>
);
4 changes: 2 additions & 2 deletions src-docs/src/views/flex/flex_justify_evenly.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { OuiFlexGroup, OuiFlexItem } from '../../../../src/components';

export default () => (
<OuiFlexGroup justifyContent="spaceEvenly">
<OuiFlexItem grow={false}>Spaced evenly between this one.</OuiFlexItem>
<OuiFlexItem grow={false}>And this one here on the right.</OuiFlexItem>
<OuiFlexItem grow={false}>Spaced evenly between this one</OuiFlexItem>
<OuiFlexItem grow={false}>And this one here on the right</OuiFlexItem>
</OuiFlexGroup>
);

0 comments on commit eaf3aba

Please sign in to comment.