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:
commit
079671ef7a
|
@ -0,0 +1 @@
|
||||||
|
Make album cards height independent (#710)
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="ui card">
|
<div :class="['ui', 'card', mode]">
|
||||||
<div class="content">
|
<div class="content">
|
||||||
<div class="right floated tiny ui image">
|
<div class="right floated tiny ui image">
|
||||||
<img v-if="album.cover.original" v-lazy="$store.getters['instance/absoluteUrl'](album.cover.square_crop)">
|
<img v-if="album.cover.original" v-lazy="$store.getters['instance/absoluteUrl'](album.cover.square_crop)">
|
||||||
|
@ -138,4 +138,8 @@ tr {
|
||||||
.expand {
|
.expand {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.ui .card.rich {
|
||||||
|
align-self: flex-start;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue