Skip to content

Commit

Permalink
Remove overflow styles from BotNav
Browse files Browse the repository at this point in the history
  • Loading branch information
lilia1891 committed Oct 31, 2024
1 parent 41543d3 commit ac367f8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions components/common/GlobalNav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,6 @@ const BotNav = styled(Navbar)<{ $offsetTop?: number; $expanded: boolean }>`
.container {
flex-wrap: nowrap;
overflow-x: auto;
overflow-y: hidden;
background-image: ${({ theme }) =>
`linear-gradient(to right, ${theme.themeColors.white}, ${theme.themeColors.white}),
linear-gradient(to right, ${theme.themeColors.white}, ${theme.themeColors.white})`},
Expand Down Expand Up @@ -698,6 +696,7 @@ function GlobalNav(props) {
</Nav>
<Nav navbar className="ms-md-5">
<PlanVersionSelector plan={plan} />

{externalItems.length > 0 &&
externalItems.map((item, index) => (
<NavItem key={`external${index}`}>
Expand Down

0 comments on commit ac367f8

Please sign in to comment.