From 56277530439c4e2e742cccc5b8befe2e950a652b Mon Sep 17 00:00:00 2001 From: FaberVitale Date: Thu, 14 Jun 2018 11:32:29 +0200 Subject: [PATCH] fix #6 --- src/components/AppBar.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/AppBar.js b/src/components/AppBar.js index ff020f5..125e5fe 100644 --- a/src/components/AppBar.js +++ b/src/components/AppBar.js @@ -19,6 +19,8 @@ const classes = withStyles(theme => ({ justifyContent: "space-between", alignItems: "center", flexFlow: "row nowrap", + /* patch ie11 bug with flexbox and minHeight, see issue#6 */ + height: APPBAR_MIN_HEIGHT - 5, minHeight: APPBAR_MIN_HEIGHT, border: 0, backgroundColor: theme.palette.background.paper,