Skip to content
Snippets Groups Projects
Commit 3a45809f authored by Georg Krause's avatar Georg Krause
Browse files

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

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

See merge request funkwhale/funkwhale!1287
parents 423a5de1 566677bc
No related branches found
No related tags found
No related merge requests found
...@@ -81,7 +81,7 @@ ...@@ -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;
......
...@@ -73,7 +73,7 @@ a { ...@@ -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%);
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment