Skip to content

Commit

Permalink
Update to pr comments
Browse files Browse the repository at this point in the history
  • Loading branch information
sandrahoang686 committed Jan 2, 2024
1 parent e8ae3b1 commit 66c40b8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions overrides/common/styles.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import { Link, NavLink } from "$veda-ui/react-router-dom";
import styled from "$veda-ui/styled-components";
import { NavLink } from "$veda-ui/react-router-dom";
import styled, { css } from "$veda-ui/styled-components";

export const AccessibilityLink = styled(NavLink)`
text-decoration: underline;
const MouseEventStyle = css`
&:hover {
cursor: pointer;
}
Expand All @@ -12,19 +11,20 @@ export const AccessibilityLink = styled(NavLink)`
&:active {
color: black;
}
`

export const AccessibilityLink = styled(NavLink)`
text-decoration: underline;
${MouseEventStyle}
`;

export const AccessibilityMenuItem = styled(NavLink)`
text-decoration: none;
${MouseEventStyle}
&:hover {
cursor: pointer;
text-decoration: underline;
}
&:focus {
outline: 3px solid #1565EF;
}
&:active {
color: black;
text-decoration: underline;
}
`;
2 changes: 1 addition & 1 deletion veda.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ module.exports = {
button: {
type: {
case: "uppercase",
weight: 550,
weight: 500,
},
},
},
Expand Down

0 comments on commit 66c40b8

Please sign in to comment.