fix(ui): tablet should use flex-row for navbar icons

This commit is contained in:
Łukasz Mierzwa
2019-12-26 10:13:13 +00:00
parent 34e247926c
commit b43396db5a

View File

@@ -121,7 +121,7 @@ const NavBar = observer(
// for more compact layout
const flexClass =
alertStore.filters.values.length >= 1
? "flex-column flex-sm-column flex-md-row flex-lg-row flex-xl-row"
? "flex-column flex-sm-row flex-md-row flex-lg-row flex-xl-row"
: "flex-row";
const isMobile = IsMobile();