|
@@ -122,7 +122,7 @@ const BadgeWrapper = styled('div')`
|
|
|
|
|
|
const ActionButton = styled(Button)`
|
|
|
color: ${p => p.theme.subText};
|
|
|
- padding: ${space(1)} ${space(0.25)} ${space(1)} ${space(1)};
|
|
|
+ padding: ${space(1)} ${space(0.5)} ${space(1)} ${space(0.5)};
|
|
|
opacity: 0.33;
|
|
|
:hover {
|
|
|
color: ${p => p.theme.textColor};
|
|
@@ -130,6 +130,7 @@ const ActionButton = styled(Button)`
|
|
|
`;
|
|
|
|
|
|
const ActionBookmark = styled(BookmarkStar)`
|
|
|
+ margin: 0 ${space(0.25)};
|
|
|
${p => !p.project.isBookmarked && 'opacity: 0.33'};
|
|
|
`;
|
|
|
|