diff options
Diffstat (limited to 'packages/gitbook-plugin-theme-default/src')
-rw-r--r-- | packages/gitbook-plugin-theme-default/src/components/Summary.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/gitbook-plugin-theme-default/src/components/Summary.js b/packages/gitbook-plugin-theme-default/src/components/Summary.js index 01f3044..d0fbde6 100644 --- a/packages/gitbook-plugin-theme-default/src/components/Summary.js +++ b/packages/gitbook-plugin-theme-default/src/components/Summary.js @@ -58,7 +58,7 @@ const SummaryPart = React.createClass({ const { part } = this.props; const { title, articles } = part; - const titleEL = title ? <h2>{title}</h2> : null; + const titleEL = title ? <h2 className="SummaryPart-Title">{title}</h2> : null; return ( <GitBook.InjectedComponent matching={{ role: 'summary:part' }} props={this.props}> |