Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
* Set v1.1.3 (#196)
Browse files Browse the repository at this point in the history
* Remove underline from links
  • Loading branch information
Daniel Sanchez authored Apr 20, 2022
1 parent 96abd70 commit 486ed5d
Show file tree
Hide file tree
Showing 44 changed files with 19,025 additions and 959 deletions.
4 changes: 2 additions & 2 deletions .storybook/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ module.exports = {
stories: ['../src/**/*.stories.tsx'],
addons: [
'@storybook/addon-actions',
'@storybook/addon-links',
'@storybook/addon-docs',
'@storybook/addon-controls',
'@storybook/addon-links',
'storybook-addon-react-docgen',
'storybook-addon-controls',
],
};
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gnosis.pm/safe-react-components",
"version": "1.1.2",
"version": "1.1.3",
"description": "Gnosis UI components",
"main": "dist/index.min.js",
"typings": "dist/index.d.ts",
Expand Down Expand Up @@ -36,13 +36,13 @@
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.0",
"@mui/x-data-grid": "4.0.2",
"@storybook/addon-actions": "^6.3.12",
"@storybook/addon-docs": "^6.3.12",
"@storybook/addon-links": "^6.3.12",
"@storybook/addon-storyshots": "^6.3.12",
"@storybook/addon-controls": "^6.4.19",
"@storybook/addons": "^6.3.12",
"@storybook/react": "^6.3.12",
"@storybook/addon-actions": "^6.4.22",
"@storybook/addon-controls": "^6.4.22",
"@storybook/addon-docs": "^6.4.22",
"@storybook/addon-links": "^6.4.22",
"@storybook/addon-storyshots": "^6.4.22",
"@storybook/addons": "^6.4.22",
"@storybook/react": "^6.4.22",
"@testing-library/jest-dom": "^5.11.5",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.2.0",
Expand Down
2 changes: 1 addition & 1 deletion src/inputs/ButtonLink/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export interface Props extends React.ComponentPropsWithoutRef<'button'> {
const StyledButtonLink = styled.button<Props>`
background: transparent;
border: none;
text-decoration: underline;
text-decoration: none;
cursor: pointer;
color: ${({ theme, color }) => theme['colors'][color]};
font-family: ${({ theme }) => theme.fonts.fontFamily};
Expand Down
2 changes: 1 addition & 1 deletion src/inputs/Link/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export interface Props extends React.AnchorHTMLAttributes<HTMLAnchorElement> {
}

const StyledLink = styled.a<Props>`
text-decoration: underline;
text-decoration: none;
cursor: pointer;
color: ${({ theme, color = 'primary' }) => theme['colors'][color]};
font-family: ${({ theme }) => theme.fonts.fontFamily};
Expand Down
Loading

0 comments on commit 486ed5d

Please sign in to comment.