Placeholder: use a better gradient fade on mobile

merge-requests/807/head
Alex Gleason 2021-10-20 11:24:03 -05:00
rodzic 5cdb7ea926
commit c738c261c0
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 7211D1F99744FBB7
1 zmienionych plików z 12 dodań i 0 usunięć

Wyświetl plik

@ -74,9 +74,11 @@
width: 100%;
height: 100%;
z-index: 1;
// On mobile, extend the gradient up to the ThumbNavigation height
background-image: linear-gradient(
0deg,
var(--background-color) 0%,
var(--background-color) var(--thumb-navigation-height),
hsla(var(--foreground-color_hsl), 0) 50%,
hsla(var(--foreground-color_hsl), 0) 100%
);
@ -84,6 +86,16 @@
left: 0;
right: 0;
bottom: 0;
@media (min-width: 895px) {
// On desktop, fade into the bottom of the page
background-image: linear-gradient(
0deg,
var(--background-color) 0%,
hsla(var(--foreground-color_hsl), 0) 50%,
hsla(var(--foreground-color_hsl), 0) 100%
);
}
}
}
}