-
Notifications
You must be signed in to change notification settings - Fork 839
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Attempting to fix with EuiFlyout maxWidth (#2125)
* Rounding min and max widths * Reduced min-width of medium flyouts to 448 ..to accomodate forms. Also added docs example for this forms width trick.
- Loading branch information
Showing
6 changed files
with
141 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,27 @@ | ||
import React from 'react'; | ||
|
||
import { Link } from 'react-router'; | ||
import { EuiText } from '../../../../src/components/text'; | ||
|
||
export const NotFoundView = () => ( | ||
<div className="guideContentPage"> | ||
<div className="guideContentPage__content"> | ||
<h1 className="guideTitle"> | ||
Wow, a 404! You just created <em>something</em> from <em>nothing</em>. | ||
</h1> | ||
<EuiText> | ||
<h1 className="guideTitle">404</h1> | ||
|
||
<p className="guideText"> | ||
You visited a page which doesn’t exist, causing <em>this</em> page | ||
to exist. This page thanks you for summoning it into existence from the | ||
raw fabric of reality, but it thinks you may find another page more | ||
interesting. Might it suggest the{' '} | ||
{ | ||
<Link className="guideLink" to="/"> | ||
home page | ||
</Link> | ||
} | ||
? | ||
</p> | ||
<p className="guideText"> | ||
You visited a page which doesn’t exist, causing <em>this</em>{' '} | ||
page to exist. This page thanks you for summoning it into existence | ||
from the raw fabric of reality, but it thinks you may find another | ||
page more interesting. Might it suggest the{' '} | ||
{ | ||
<Link className="guideLink" to="/"> | ||
home page | ||
</Link> | ||
} | ||
? | ||
</p> | ||
</EuiText> | ||
</div> | ||
</div> | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters