Skip to content

Commit a3cb19c

Browse files
committed
Prepare pixel-perfect exercise
1 parent a6d96cb commit a3cb19c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

features/ui/sidebar-navigation/menu-item-link.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ type MenuItemProps = {
1212
};
1313

1414
export const ListItem = styled.li<{ isActive?: boolean }>`
15-
height: ${space(12)};
15+
height: 40px;
1616
display: flex;
1717
align-items: center;
18-
margin-top: ${space(1)};
19-
padding: ${space(0, 3)};
18+
margin-top: ${space(0)};
19+
padding: ${space(1)};
2020
background: ${(props) =>
2121
props.isActive ? color("gray", 700)(props) : "transparent"};
2222
border-radius: 6px;

0 commit comments

Comments
 (0)