Skip to content

Commit

Permalink
fix: right header navigation position (#167)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fran McDade authored and Fran McDade committed Aug 26, 2024
1 parent 1245e08 commit 3205fb5
Showing 1 changed file with 4 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ interface Props {

export const Navigation = styled("div")<Props>`
display: flex;
flex: 1;
flex: unset;
flex-direction: row;
gap: 8px;
justify-content: flex-start;
justify-content: inherit;
${({ isMenuIn }) =>
isMenuIn &&
css`
flex: unset;
justify-content: inherit;
flex: 1;
justify-content: flex-start;
`};
.MuiButton-activeNav,
Expand All @@ -33,11 +33,5 @@ export const Navigation = styled("div")<Props>`
.MuiDivider-root {
margin: 8px 0;
${({ isMenuIn }) =>
isMenuIn &&
css`
display: none;
`};
}
`;

0 comments on commit 3205fb5

Please sign in to comment.