diff options
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> ); } |