Fix postcss warnings about old gradient syntax and justify-content: start

This commit is contained in:
heyarne 2021-03-30 11:00:28 +02:00
parent 461c55e08c
commit 566677bc28
2 changed files with 2 additions and 2 deletions

View File

@ -81,7 +81,7 @@
.track-controls { .track-controls {
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: start; justify-content: flex-start;
flex-grow: 1; flex-grow: 1;
.image { .image {
padding: 0.5em; padding: 0.5em;

View File

@ -73,7 +73,7 @@ a {
&:not(.expanded) { &:not(.expanded) {
overflow: hidden; overflow: hidden;
max-height: 15vh; 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%);
} }
} }