OK so it was doing something all along...

... i just didn't notice the problematic thing until i started applying
transparency to headers of non-blue colors i guess?

Revert "Delete code that was commented out before i accidentally uncommented it"

This reverts commit 8a43d60d44.
This commit is contained in:
benjamin melançon 2018-12-14 22:39:41 -05:00
parent 92810e08bb
commit af74487a66

View file

@ -17,6 +17,18 @@
background-position: center; background-position: center;
background-size: cover; background-size: cover;
background-repeat: no-repeat; background-repeat: no-repeat;
&::before {
position: absolute;
display: block;
top: 0;
right: 0;
left: 0;
height: 11em;
content: "";
background: -webkit-linear-gradient(top, rgba(13,30,52,1) 25%,rgba(13,30,52,0) 100%);
background: -moz-linear-gradient(top, rgba(13,30,52,1) 25%, rgba(13,30,52,0) 100%);
background: linear-gradient(to bottom, rgba(13,30,52,1) 25%,rgba(13,30,52,0) 100%);
}
a .icon { a .icon {
color: $dandelion; color: $dandelion;
} }