[home] change recently accessed header to h3 (#19085) (#19119)

* change recently accessed header to h3 to be more accessible

* change recently accessed header to h3 to be more accessible
This commit is contained in:
Nathan Reese 2018-05-16 08:49:41 -06:00 committed by GitHub
parent a9083312a8
commit 9ea342ffa7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 9 deletions

View file

@ -6,17 +6,17 @@ exports[`render 1`] = `
hasShadow={false}
paddingSize="l"
>
<EuiText
grow={true}
<EuiTitle
size="xs"
>
<p>
<h3>
<EuiTextColor
color="subdued"
>
Recently viewed
</EuiTextColor>
</p>
</EuiText>
</h3>
</EuiTitle>
<EuiSpacer
size="s"
/>

View file

@ -13,6 +13,7 @@ import {
EuiIcon,
EuiSpacer,
EuiToolTip,
EuiTitle,
} from '@elastic/eui';
export const NUM_LONG_LINKS = 5;
@ -174,13 +175,13 @@ export class RecentlyAccessed extends Component {
render() {
return (
<EuiPanel paddingSize="l">
<EuiText>
<p>
<EuiTitle size="xs">
<h3>
<EuiTextColor color="subdued">
Recently viewed
</EuiTextColor>
</p>
</EuiText>
</h3>
</EuiTitle>
<EuiSpacer size="s"/>