From c7acd0398cdd86a7d7d8b60159257a0fc5286e8e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 19 Oct 2023 15:04:14 +0200 Subject: [PATCH] Running lint --fix (#17001) Co-authored-by: Dr. Lint-a-lot --- .../src/components/navigation/Navigation.styles.tsx | 6 +++--- .../src/components/throughput/GlobalThroughput.jsx | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/graylog2-web-interface/src/components/navigation/Navigation.styles.tsx b/graylog2-web-interface/src/components/navigation/Navigation.styles.tsx index cc417955338c..add7913fe610 100644 --- a/graylog2-web-interface/src/components/navigation/Navigation.styles.tsx +++ b/graylog2-web-interface/src/components/navigation/Navigation.styles.tsx @@ -64,7 +64,7 @@ const StyledNavbar = styled(Navbar)(({ theme }) => css` } } - @media (max-width: 991px) { + @media (width <= 991px) { .small-scrn-badge { float: right; margin: 15px 15px 0; @@ -106,7 +106,7 @@ const StyledNavbar = styled(Navbar)(({ theme }) => css` } } - @media (min-width: 768px) { + @media (width >= 768px) { .navbar-toggle { display: block; } @@ -145,7 +145,7 @@ const StyledNavbar = styled(Navbar)(({ theme }) => css` } } - @media (min-width: 991px) { + @media (width >= 991px) { .header-meta-nav { display: flex; align-items: center; diff --git a/graylog2-web-interface/src/components/throughput/GlobalThroughput.jsx b/graylog2-web-interface/src/components/throughput/GlobalThroughput.jsx index 5d7efe3afc67..e2d26f2da0dc 100644 --- a/graylog2-web-interface/src/components/throughput/GlobalThroughput.jsx +++ b/graylog2-web-interface/src/components/throughput/GlobalThroughput.jsx @@ -31,7 +31,7 @@ const ThroughputNavItem = styled(NavItem)` align-items: center; height: 50px; - @media (max-width: 991px) { + @media (width <= 991px) { height: auto; display: block; } @@ -45,7 +45,7 @@ const ContentWrap = styled.strong` grid-gap: 0; height: 30px; - @media (max-width: 991px) { + @media (width <= 991px) { height: auto; display: block;