Skip to content

Commit

Permalink
fix(suite): CoinJoin status double scrollbar
Browse files Browse the repository at this point in the history
  • Loading branch information
Lemonexe authored and peter-sanderson committed Nov 19, 2024
1 parent 364737a commit 4bfb4be
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ const ViewText = styled.div`

const Container = styled.div<{ $isClickable: boolean }>`
display: flex;
align-self: stretch;
align-items: center;
height: 28px;
padding: 0 ${SPACING}px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ export const SuiteLayout = ({ children }: SuiteLayoutProps) => {

<ModalSwitcher />

<CoinjoinBars />
{isMobileLayout && <CoinjoinBars />}

{isMobileLayout && <MobileMenu />}

Expand All @@ -144,6 +144,7 @@ export const SuiteLayout = ({ children }: SuiteLayoutProps) => {
</ElevationDown>
)}
<MainBar>
{!isMobileLayout && <CoinjoinBars />}
<SuiteBanners />
<AppWrapper
data-testid="@app"
Expand Down

0 comments on commit 4bfb4be

Please sign in to comment.