Restored actor wrapping in release view.

This commit is contained in:
ThePendulum 2020-01-09 02:52:20 +01:00
parent df9c45bd39
commit 3123589169
2 changed files with 10 additions and 1 deletions

View File

@ -103,7 +103,6 @@
<li
v-for="actor in release.actors"
:key="actor.id"
class="actor"
>
<Actor :actor="actor" />
</li>
@ -365,6 +364,11 @@ export default {
font-size: 1rem;
}
.actors {
display: flex;
flex-wrap: wrap;
}
.actor {
width: 10rem;
margin: 0 1rem .5rem 0;

View File

@ -493,6 +493,11 @@
.duration-segment[data-v-d4b03dc2] {
font-size: 1rem;
}
.actors[data-v-d4b03dc2] {
display: -webkit-box;
display: flex;
flex-wrap: wrap;
}
.actor[data-v-d4b03dc2] {
width: 10rem;
margin: 0 1rem .5rem 0;