Skip to content
Snippets Groups Projects
Commit 668dd088 authored by Liliana Sanfilippo's avatar Liliana Sanfilippo
Browse files

DEPRECATION WARNING: darken() is deprecated.

parent 299460ca
No related branches found
No related tags found
No related merge requests found
Pipeline #473693 failed
......@@ -557,10 +557,11 @@ $shadow: #bc15aa;
padding: 30px;
border-style: solid;
border-width: 30px;
border-top-color: darken(#850F78, 0%);
border-right-color: darken(#850F78, 10%);
border-bottom-color: darken(#850F78, 0%);
border-left-color: darken(#850F78, 10%);
$color: "#850F78";
border-top-color: color.adjust($color, $lightness: 0%);
border-right-color: color.adjust($color, $lightness: 10%);
border-bottom-color: color.adjust($color, $lightness: 0%);
border-left-color: color.adjust($color, $lightness: 10%);
box-shadow: 2px 2px 4px rgba(0,0,0,.6);
}
.cert-frame {
......@@ -576,10 +577,11 @@ $shadow: #bc15aa;
padding: 10px;
border-style: solid;
border-width: 20px;
border-top-color: darken(#850F78, 0%);
border-right-color: darken(#850F78, 10%);
border-bottom-color: darken(#850F78, 0%);
border-left-color: darken(#850F78, 10%);
$color: "#850F78";
border-top-color: color.adjust($color, $lightness: 0%);
border-right-color: color.adjust($color, $lightness: 10%);
border-bottom-color: color.adjust($color, $lightness: 0%);
border-left-color: color.adjust($color, $lightness: 10%);
box-shadow: 2px 2px 4px rgba(0,0,0,.6);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment