Skip to content

Commit

Permalink
fix: inverse colors
Browse files Browse the repository at this point in the history
Co-authored-by: Sarah <[email protected]>
  • Loading branch information
krisantrobus and serifluous authored Oct 15, 2024
1 parent a98b9c6 commit 3ce59a9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ interface OverflowButtonProps {
const Styles: BoxStyleProps = {
color: "colorTextIconInverse",
_hover: {
color: "colorTextInverseWeak",
color: "colorTextInverse",
cursor: "pointer",
},
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const Styles: BoxStyleProps = {
const InverseStyles: BoxStyleProps = {
color: "colorTextIconInverse",
_hover: {
color: "colorTextInverseWeak",
color: "colorTextInverse",
cursor: "pointer",
},
};
Expand Down
2 changes: 1 addition & 1 deletion packages/paste-core/components/tabs/src/OverflowButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const Styles: BoxStyleProps = {
const InverseStyles: BoxStyleProps = {
color: "colorTextIconInverse",
_hover: {
color: "colorTextInverseWeak",
color: "colorTextInverse",
cursor: "pointer",
},
};
Expand Down

0 comments on commit 3ce59a9

Please sign in to comment.