From 566677bc2866626af24d3810926601a13dec0102 Mon Sep 17 00:00:00 2001 From: heyarne <hi@arnes.space> Date: Tue, 30 Mar 2021 11:00:28 +0200 Subject: [PATCH] Fix postcss warnings about old gradient syntax and justify-content: start --- front/src/style/components/_player.scss | 2 +- front/src/style/globals/_utils.scss | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/front/src/style/components/_player.scss b/front/src/style/components/_player.scss index edaa982774..c261bb07f3 100644 --- a/front/src/style/components/_player.scss +++ b/front/src/style/components/_player.scss @@ -81,7 +81,7 @@ .track-controls { display: flex; align-items: center; - justify-content: start; + justify-content: flex-start; flex-grow: 1; .image { padding: 0.5em; diff --git a/front/src/style/globals/_utils.scss b/front/src/style/globals/_utils.scss index f227cb2998..7cf0e63d4c 100644 --- a/front/src/style/globals/_utils.scss +++ b/front/src/style/globals/_utils.scss @@ -73,7 +73,7 @@ a { &:not(.expanded) { overflow: hidden; max-height: 15vh; - background: linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 90%, rgba(0, 0, 0, 0.3) 100%); + background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 90%, rgba(0, 0, 0, 0.3) 100%); } } -- GitLab