diff options
author | Samy Pesse <samypesse@gmail.com> | 2016-09-27 17:08:34 +0200 |
---|---|---|
committer | Samy Pesse <samypesse@gmail.com> | 2016-09-27 17:08:34 +0200 |
commit | bc5df83846a94fdbbfe7e1ca41489162e3a0dc47 (patch) | |
tree | 30d78df7c33723f6a8b3f2c0ba56937dd7e75cce /packages/gitbook-plugin-theme-default/src/components | |
parent | f1ef1902f360e111587858f73972369b734a0237 (diff) | |
download | gitbook-bc5df83846a94fdbbfe7e1ca41489162e3a0dc47.zip gitbook-bc5df83846a94fdbbfe7e1ca41489162e3a0dc47.tar.gz gitbook-bc5df83846a94fdbbfe7e1ca41489162e3a0dc47.tar.bz2 |
Start designing toolbar
Diffstat (limited to 'packages/gitbook-plugin-theme-default/src/components')
-rw-r--r-- | packages/gitbook-plugin-theme-default/src/components/Toolbar.js | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/packages/gitbook-plugin-theme-default/src/components/Toolbar.js b/packages/gitbook-plugin-theme-default/src/components/Toolbar.js index 9a60ff4..a7958d6 100644 --- a/packages/gitbook-plugin-theme-default/src/components/Toolbar.js +++ b/packages/gitbook-plugin-theme-default/src/components/Toolbar.js @@ -19,8 +19,12 @@ const Toolbar = React.createClass({ <GitBook.Button onClick={this.onToggle}> <GitBook.Icon id="align-justify" /> </GitBook.Button> - <GitBook.InjectedComponentSet matching={{ role: 'toolbar:buttons:left' }} /> - <GitBook.InjectedComponentSet matching={{ role: 'toolbar:buttons:right' }} /> + <div className="Toolbar-left"> + <GitBook.InjectedComponentSet matching={{ role: 'toolbar:buttons:left' }} /> + </div> + <div className="Toolbar-right"> + <GitBook.InjectedComponentSet matching={{ role: 'toolbar:buttons:right' }} /> + </div> </div> ); } |