Skip to content

Commit 312f7b9

Browse files
authored
Merge pull request #54 from ta-run/bugfix/IE-11-header-fix
Fixed issue with the header alignment in IE11
2 parents f440d5f + 970b3a3 commit 312f7b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/app.header.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import { toggleLeftNav } from '../containers/navigation/navigation-bar.actions';
1414

1515
const AppHeaderComponent = ({ user, onToggleLeftNav, leftNavOpen, onAvatarClick }) => (
1616
<AppBar
17-
style={{ position: 'fixed' }}
17+
style={{ position: 'fixed', left: 0 }}
1818
title={renderTitle(user)}
1919
iconElementLeft={<LeftIcon leftNavOpen={leftNavOpen} onToggleLeftNav={onToggleLeftNav} />}
2020
iconElementRight={<RightMenu user={user.account} isFetching={user.isFetching} onAvatarClick={onAvatarClick} />} />

0 commit comments

Comments
 (0)