Changes background gradient to single colour, removes text background

This commit is contained in:
Bianca Cheng Costanzo
2017-10-11 15:02:40 +02:00
parent 7c27a1ce6d
commit cc4162e55a
2 changed files with 2 additions and 2 deletions

View File

@@ -102,7 +102,7 @@ a {
.overlay-wrapper {
align-items: center;
background-color: fade-out($background-average-color, 0.1);
background-color: transparent;
border-radius: 4px;
color: $text-tertiary-color;
display: flex;

View File

@@ -58,5 +58,5 @@ $search-border-width: 1px;
$timeline-height: 55px;
/* specific elements */
$body-background-color: linear-gradient(30deg, $background-color 0%, $background-lighter-color 100%);
$body-background-color: $background-average-color;
$label-background-color: fade-out($background-average-color, .3);