Skip to content

Commit

Permalink
[BLOG-50] feat(footer-addons): updated footer links
Browse files Browse the repository at this point in the history
  • Loading branch information
shaun-jacks committed May 31, 2020
1 parent cd13f1d commit 204f62f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/components/Footer/FooterLink.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import React from "react";
import _ from "lodash";

/** @jsx jsx */
import { Styled, jsx, Card } from "theme-ui";
import { darken, lighten } from "@theme-ui/color";
import { Styled, jsx } from "theme-ui";
import { lighten } from "@theme-ui/color";

interface FooterLinkProps {
url: string;
Expand All @@ -19,6 +19,7 @@ export default function FooterLink({ url, label }: FooterLinkProps) {
pb: 2,
textDecoration: "none",
transition: "all .3s ease",
fontSize: "12px",
"&:hover": { cursor: "pointer", color: lighten("secondary", 0.2) },
}}
href={url}
Expand Down

0 comments on commit 204f62f

Please sign in to comment.