Skip to content

Commit

Permalink
fix: textdecoration in button as link
Browse files Browse the repository at this point in the history
  • Loading branch information
omariosouto committed Dec 24, 2021
1 parent 8b87eaa commit afa134e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/components/button/button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,7 @@ export function Button({
styleSheet={{
...buttonSize,
...buttonStyle,
textDecoration: 'none',
overflow: 'hidden',
width: fullWidth ? '100%' : styleSheet.width,
borderRadius,
Expand Down
1 change: 1 addition & 0 deletions lib/core/stylesheet/stylesheet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ export interface StyleSheet {
overflow?: ResponsiveProperty<string> | string;
position?: ResponsiveProperty<string> | string;
resize?: ResponsiveProperty<string> | string;
textDecoration?: ResponsiveProperty<string> | string;
transition?: ResponsiveProperty<string> | string;
fontFamily?: ResponsiveProperty<string> | string;
fontSize?: ResponsiveProperty<string | number> | string;
Expand Down

1 comment on commit afa134e

@vercel
Copy link

@vercel vercel bot commented on afa134e Dec 24, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.