From c979c8740acd4435532f7cad03ea64e5f03a27af Mon Sep 17 00:00:00 2001 From: Aarni Halinen Date: Tue, 24 Nov 2020 22:16:05 +0200 Subject: [PATCH] Color fix --- src/components/AddLink.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/AddLink.tsx b/src/components/AddLink.tsx index 54634b9..47471fd 100644 --- a/src/components/AddLink.tsx +++ b/src/components/AddLink.tsx @@ -1,5 +1,6 @@ import React, { ComponentProps } from "react"; import styled from "styled-components"; +import { colors }from "@theme/colors"; import Anchor from "@components/Anchor"; import AddIcon from "@assets/img/add-icon.png"; @@ -10,7 +11,7 @@ const Link = styled(Anchor)` margin-bottom: 1rem; &:hover { - color: color(orange2); + color: ${colors.orange2}; } img {