Merge branch 'bugfix/postcss-warnings' into 'develop'

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

See merge request funkwhale/funkwhale!1287
This commit is contained in:
Georg Krause 2021-04-07 06:21:07 +00:00
commit 3a45809f1c
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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%);
}
}