Skip to content

Commit

Permalink
removing heading hover states
Browse files Browse the repository at this point in the history
  • Loading branch information
jenbreese committed Apr 11, 2024
1 parent 59c4b90 commit 074f7a9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/components/elements/headers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {twMerge} from "tailwind-merge";

type Props = HtmlHTMLAttributes<HTMLHeadingElement>

const headingLinkClasses = "[&_a]:text-digital-red [&_a]:hocus:text-black [&_a]:hocus:underline";
const headingLinkClasses = "[&_a]:hocus:underline";

export const H1 = ({children, className, ...props}: Props) => {
return (
Expand Down
2 changes: 1 addition & 1 deletion src/components/images/logo-lg.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ type Props = HtmlHTMLAttributes<SVGSVGElement> & {
width?: number
}

const PressFooterLogoLg = ({height = 91, width = 426, ...props}: Props) => {
const PressFooterLogoLg = ({height = 89, width = 579, ...props}: Props) => {
if (height != 91 && width == 426) {
width *= height / 91
}
Expand Down
5 changes: 1 addition & 4 deletions src/styles/typography/local-footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,9 @@ module.exports = function () {
return function ({addComponents}) {
const components = {
".local-footer": {
color: "white",
"h2": {
fontSize: "1.2em",
"&:hover": {
color: "#8AB8A7",
textDecorationThickness: "2px",
},
"a": {
"&:hover": {
color: "#8AB8A7",
Expand Down

0 comments on commit 074f7a9

Please sign in to comment.