Skip to content

Commit

Permalink
fix(docz-theme-default): use padding on link instead of margin
Browse files Browse the repository at this point in the history
  • Loading branch information
pedronauck committed Aug 16, 2018
1 parent a82903a commit b15457c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -44,7 +44,7 @@ const Wrapper = styled('div')`
export const linkStyle = ({ colors }: any) => css`
position: relative;
display: block;
margin: 6px 24px;
padding: 4px 24px;
font-weight: 600;
color: ${colors.sidebarText};
text-decoration: none;
Expand Down
Expand Up @@ -34,7 +34,7 @@ const iconRotate = (p: IconProps) => (p.opened ? '-180deg' : '0deg')
const Icon = styled('div')`
position: absolute;
top: 50%;
right: 0;
right: 20px;
transform: translateY(-50%) rotate(${iconRotate});
transform-origin: 50% 50%;
transition: transform 0.3s;
Expand Down

0 comments on commit b15457c

Please sign in to comment.