diff options
author | Samy Pesse <samypesse@gmail.com> | 2016-10-12 16:07:28 +0200 |
---|---|---|
committer | Samy Pesse <samypesse@gmail.com> | 2016-10-12 16:07:28 +0200 |
commit | 52d03846055708a1e7e780ec19e761dc9f422b58 (patch) | |
tree | c8100468fc46e5e2c6cbf5d4fb3f0b4945840e41 /packages/gitbook-plugin-theme-default/src/components/Summary.js | |
parent | 961b9d7031347c2c108b22c9c4cf85ce3e0c63d0 (diff) | |
download | gitbook-52d03846055708a1e7e780ec19e761dc9f422b58.zip gitbook-52d03846055708a1e7e780ec19e761dc9f422b58.tar.gz gitbook-52d03846055708a1e7e780ec19e761dc9f422b58.tar.bz2 |
Improve some CSS for default theme
Diffstat (limited to 'packages/gitbook-plugin-theme-default/src/components/Summary.js')
-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}> |