Merge branch '710-make-album-cards-independent' into 'develop'

Make album cards independent

Closes #710

See merge request funkwhale/funkwhale!851
This commit is contained in:
Eliot Berriot 2019-08-22 10:45:16 +02:00
commit 079671ef7a
2 changed files with 6 additions and 1 deletions

View File

@ -0,0 +1 @@
Make album cards height independent (#710)

View File

@ -1,5 +1,5 @@
<template>
<div class="ui card">
<div :class="['ui', 'card', mode]">
<div class="content">
<div class="right floated tiny ui image">
<img v-if="album.cover.original" v-lazy="$store.getters['instance/absoluteUrl'](album.cover.square_crop)">
@ -138,4 +138,8 @@ tr {
.expand {
cursor: pointer;
}
.ui .card.rich {
align-self: flex-start;
}
</style>