fix: reduce title size #1288

This commit is contained in:
Daan Wijns 2023-11-13 11:55:07 +01:00
parent f1cefe4e3c
commit 0c7701a4d2

View file

@ -65,8 +65,8 @@ const isTorrentSelected = computed(() => dashboardStore.isTorrentInSelection(pro
<template>
<v-card :class="`sideborder ${torrent.state} pointer`" :color="isTorrentSelected ? `torrent-${torrent.state}-darken-3` : undefined" width="100%" @click="onClick">
<v-card-title class="font-weight-bold text-wrap">{{ torrent.name }}</v-card-title>
<v-card-text>
<v-card-title class="text-wrap text-h6 pt-1 pb-0">{{ torrent.name }}</v-card-title>
<v-card-text class="pa-2 pt-0">
<div class="d-flex gap flex-wrap">
<component :is="getComponent(ppt.type)" :torrent="torrent" v-bind="ppt.props" v-for="ppt in torrentProperties" />
</div>