From a9949cb9146f46fb002604bd2d27e872f4705b1b Mon Sep 17 00:00:00 2001 From: Michal Klobukowski Date: Wed, 13 Jun 2018 10:16:32 +0200 Subject: [PATCH] Tighten main app bar Feature #13590 Arvados-DCO-1.1-Signed-off-by: Michal Klobukowski --- src/components/main-app-bar/main-app-bar.tsx | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/src/components/main-app-bar/main-app-bar.tsx b/src/components/main-app-bar/main-app-bar.tsx index 4beea605..06264157 100644 --- a/src/components/main-app-bar/main-app-bar.tsx +++ b/src/components/main-app-bar/main-app-bar.tsx @@ -43,14 +43,17 @@ export class MainAppBar extends React.Component { render() { const { classes, searchText, breadcrumbs, searchDebounce } = this.props; return - + - - Arvados
Workbench 2 + + Arvados + + + Workbench 2
@@ -70,7 +73,7 @@ export class MainAppBar extends React.Component {
{ - this.props.user && + this.props.user && } @@ -116,11 +119,14 @@ export class MainAppBar extends React.Component { } -type CssRules = "appBar"; +type CssRules = "appBar" | "toolbar"; const styles: StyleRulesCallback = theme => ({ appBar: { backgroundColor: "#692498" + }, + toolbar: { + minHeight: '48px' } }); -- 2.30.2