Skip to content

Commit

Permalink
fix: larger indent of side items
Browse files Browse the repository at this point in the history
  • Loading branch information
atanasster committed Dec 23, 2020
1 parent d9999a6 commit 3bc27fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/app/src/SideContext/SideContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export const SideContext: FC<SideContext> = ({ pageRef }) => {
key={`context_link_${index}`}
href={el.href}
// eslint-disable-next-line no-mixed-operators
sx={{ pl: `${4 + (el.level - 1) * 6}px` }}
sx={{ pl: `${4 + (el.level - 1) * 20}px` }}
className={index === activeItem ? 'active' : undefined}
>
{el.title}
Expand Down

0 comments on commit 3bc27fe

Please sign in to comment.