Skip to content

Commit

Permalink
Running lint --fix (#17001)
Browse files Browse the repository at this point in the history
Co-authored-by: Dr. Lint-a-lot <[email protected]>
  • Loading branch information
github-actions[bot] and Dr. Lint-a-lot authored Oct 19, 2023
1 parent 7974982 commit c7acd03
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -106,7 +106,7 @@ const StyledNavbar = styled(Navbar)(({ theme }) => css`
}
}
@media (min-width: 768px) {
@media (width >= 768px) {
.navbar-toggle {
display: block;
}
Expand Down Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const ThroughputNavItem = styled(NavItem)`
align-items: center;
height: 50px;
@media (max-width: 991px) {
@media (width <= 991px) {
height: auto;
display: block;
}
Expand All @@ -45,7 +45,7 @@ const ContentWrap = styled.strong`
grid-gap: 0;
height: 30px;
@media (max-width: 991px) {
@media (width <= 991px) {
height: auto;
display: block;
Expand Down

0 comments on commit c7acd03

Please sign in to comment.