Skip to content

Commit

Permalink
Merge pull request #39 from Giveth/release-1-6-1
Browse files Browse the repository at this point in the history
fix Stream icon colors
  • Loading branch information
MohammadPCh authored Feb 23, 2022
2 parents 82c3ef5 + 58e8b38 commit 1ef792f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@giveth/ui-design-system",
"version": "1.5.0",
"version": "1.6.1",
"files": [
"/lib"
],
Expand Down
2 changes: 1 addition & 1 deletion src/components/buttons/Button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { IButtonContainerProps, IButtonProps } from './type';
const ButtonContainer = styled.button<IButtonContainerProps>`
border: 0 solid;
border-radius: 48px;
padding: ${ props => props.size === 'large' ? '24px' : '16px'} 24px;
padding: ${props => (props.size === 'large' ? '24px' : '16px')} 24px;
transition: background 0.3s ease;
display: flex;
justify-content: center;
Expand Down

0 comments on commit 1ef792f

Please sign in to comment.