From 80dbdeec983186055ce9ccd644337ba58076990e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javi=20Mart=C3=ADn?= Date: Thu, 20 May 2021 00:04:38 +0200 Subject: [PATCH] Simplify borders in dashboard resource cards In both cases we were using a 2px solid border with the color of the current text, so we can write the rule once and without defining the colors. --- app/assets/stylesheets/dashboard.scss | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/assets/stylesheets/dashboard.scss b/app/assets/stylesheets/dashboard.scss index 711ae419b..81cdca0e5 100644 --- a/app/assets/stylesheets/dashboard.scss +++ b/app/assets/stylesheets/dashboard.scss @@ -182,14 +182,13 @@ background: #feeaeb; &::before { - border: 2px solid #fb9497; color: #fb9497; content: "\74"; } } &::before { - border: 2px solid #00cb96; + border: 2px solid; border-radius: rem-calc(40); color: #00cb96; content: "\6c";