We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6d96cb commit 5ab8c90Copy full SHA for 5ab8c90
features/ui/sidebar-navigation/menu-item-link.tsx
@@ -12,11 +12,11 @@ type MenuItemProps = {
12
};
13
14
export const ListItem = styled.li<{ isActive?: boolean }>`
15
- height: ${space(12)};
+ height: 40px;
16
display: flex;
17
align-items: center;
18
- margin-top: ${space(1)};
19
- padding: ${space(0, 3)};
+ margin-top: ${space(0)};
+ padding: ${space(1)};
20
background: ${(props) =>
21
props.isActive ? color("gray", 700)(props) : "transparent"};
22
border-radius: 6px;
@@ -29,7 +29,7 @@ export const ListItem = styled.li<{ isActive?: boolean }>`
29
export const Anchor = styled.a`
30
31
32
- color: ${color("gray", 100)};
+ color: #aaa;
33
text-decoration: none;
34
`;
35
0 commit comments