From 0608d3cf192cbfd99ac5d7f8e15f0ee76e36a1ba Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Sat, 5 Feb 2022 13:46:24 +0100 Subject: [PATCH] Improved icon in HighlightedCard --- src/servers/helpers/HighlightCard.scss | 1 + src/servers/helpers/HighlightCard.tsx | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/servers/helpers/HighlightCard.scss b/src/servers/helpers/HighlightCard.scss index beb6fe5b..ecfda6ed 100644 --- a/src/servers/helpers/HighlightCard.scss +++ b/src/servers/helpers/HighlightCard.scss @@ -12,6 +12,7 @@ right: 5px; bottom: 5px; opacity: 0.1; + transform: rotate(-45deg); } .highlight-card__title { diff --git a/src/servers/helpers/HighlightCard.tsx b/src/servers/helpers/HighlightCard.tsx index bf0fc408..d274f4c5 100644 --- a/src/servers/helpers/HighlightCard.tsx +++ b/src/servers/helpers/HighlightCard.tsx @@ -1,7 +1,7 @@ import { FC } from 'react'; import { Card, CardText, CardTitle } from 'reactstrap'; import { Link } from 'react-router-dom'; -import { faLink as linkIcon } from '@fortawesome/free-solid-svg-icons'; +import { faArrowAltCircleRight as linkIcon } from '@fortawesome/free-regular-svg-icons'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import './HighlightCard.scss';