Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Backport 1.0] Updated text in Section Positions #254

Merged
merged 1 commit into from
Feb 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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>
);