Skip to content

Commit

Permalink
fix(GoalAchievmentCriteria): markup changes and beatufy
Browse files Browse the repository at this point in the history
  • Loading branch information
LamaEats committed Jun 28, 2023
1 parent ebaab23 commit 2e94bcd
Show file tree
Hide file tree
Showing 9 changed files with 257 additions and 221 deletions.
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"@sentry/nextjs": "7.50.0",
"@tanstack/react-query": "4.29.5",
"@tanstack/react-query-devtools": "4.29.5",
"@taskany/bricks": "1.16.0",
"@taskany/bricks": "1.16.1",
"@taskany/colors": "1.1.0",
"@tippyjs/react": "4.2.6",
"@trpc/client": "10.23.1",
Expand Down
2 changes: 2 additions & 0 deletions src/components/ActivityFeed.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ export const ActivityFeed = styled.div`
row-gap: ${gapM};
padding-top: ${gapL};
padding-bottom: 250px;
position: relative;
z-index: 0;
`;

export const ActivityFeedItem = styled.div`
Expand Down
15 changes: 15 additions & 0 deletions src/components/Circle.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import styled, { css } from 'styled-components';

interface CircleProps {
size: number;
}

export const Circle = styled.span<CircleProps>`
border-radius: 50%;
overflow: hidden;
${({ size }) => css`
width: ${size}px;
height: ${size}px;
`}
`;
Loading

0 comments on commit 2e94bcd

Please sign in to comment.