Commit d9009203 authored by Jerome Chauveau's avatar Jerome Chauveau
Browse files

'avatar' comme repère visuel sur les CARD des collecctions

parent 872984f1
Loading
Loading
Loading
Loading
+15 −2
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@
    <v-card-title class="grey--text body-2">
      {{ label }}
    </v-card-title>
    <v-card-text>
    <v-card-text class="jama-collection-card-text">
      <v-row
          align="center"
          class="mx-0">
@@ -31,6 +31,11 @@
          {{ collection.descendants_count }}
        </div>
      </v-row>
      <v-avatar color="grey lighten-4">
        <v-icon color="grey lighten">
          mdi-folder
        </v-icon>
      </v-avatar>
    </v-card-text>
  </v-card>
</template>
@@ -82,7 +87,15 @@ export default {
}
</script>

<style lang="scss" scoped>
<style lang="scss">

.jama-collection-card-text {
  position: relative;

  .v-avatar {
    position: absolute;
    bottom: 2px;
    right: 2px;
  }
}
</style>