Skip to content

Commit

Permalink
Merge branch 'feat/init' of github.com:pangolindex/components into fe…
Browse files Browse the repository at this point in the history
…at/init
  • Loading branch information
SarjuHansaliya committed Nov 10, 2021
2 parents fe9acde + 0013576 commit c435fe7
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 12 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pangolindex/components",
"version": "1.0.0",
"version": "1.0.3",
"main": "lib/index.js",
"module": "lib/index.esm.js",
"engines": {
Expand Down
21 changes: 10 additions & 11 deletions src/components/Steps/styles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,15 +75,14 @@ export const StepName = styled('div')`
`;

export const IconDot = styled.div<{ completed?: boolean; active?: boolean }>`
position: relative;
z-index: 5;
display: flex;
justify-content: center;
align-items: center;
width: 10px;
height: 10px;
border-radius: 50%;
background: ${({ completed, active, theme }) => (completed || active ? theme.primary1 : theme.bg5)};
margin-top: 17px;
}
position: relative;
z-index: 5;
display: flex;
justify-content: center;
align-items: center;
width: 10px;
height: 10px;
border-radius: 50%;
background: ${({ completed, active, theme }) => (completed || active ? theme.primary1 : theme.bg5)};
margin-top: 17px;
`;

0 comments on commit c435fe7

Please sign in to comment.