diff --git a/src/components/cards/TorrentCard.vue b/src/components/cards/TorrentCard.vue index bb862918..f2def991 100644 --- a/src/components/cards/TorrentCard.vue +++ b/src/components/cards/TorrentCard.vue @@ -122,7 +122,7 @@ onMounted(() => {
-
+

{{ media?.title ?? meta?.name }}

@@ -340,8 +340,6 @@ onMounted(() => { .media-title-wrapper { margin-bottom: 8px; - display: flex; - flex-wrap: wrap; padding-right: 2rem; } diff --git a/src/components/cards/TorrentItem.vue b/src/components/cards/TorrentItem.vue index 91183fe2..83b36e45 100644 --- a/src/components/cards/TorrentItem.vue +++ b/src/components/cards/TorrentItem.vue @@ -106,7 +106,7 @@ onMounted(() => {
{{ torrent?.site_name?.substring(0, 1) }} -
{{ torrent?.site_name }}
+
{{ torrent?.site_name }}
{
-
- {{ media?.title ?? meta?.name }} +
+ {{ media?.title ?? meta?.name }} {{ meta?.season_episode }}
@@ -295,10 +295,7 @@ onMounted(() => { } .media-info { - display: flex; align-items: center; - flex-wrap: wrap; - gap: 8px; } .media-title { @@ -447,7 +444,7 @@ onMounted(() => { } .site-wrapper { - min-width: 60px; + min-width: 24px; flex-wrap: wrap; margin-right: 10px; } @@ -457,6 +454,10 @@ onMounted(() => { margin-right: 4px; } + .size-badge { + font-size: 0.7rem; + } + .resource-tag { font-size: 0.75rem; padding: 2px 6px; diff --git a/src/views/torrent/TorrentRowListView.vue b/src/views/torrent/TorrentRowListView.vue index 7c8a5a44..07ce7d65 100644 --- a/src/views/torrent/TorrentRowListView.vue +++ b/src/views/torrent/TorrentRowListView.vue @@ -595,7 +595,6 @@ function toggleFilterMenu(key: string) { } .view-header { - padding: 12px 16px; background-color: rgb(var(--v-theme-surface)); border-radius: 12px; border: 1px solid rgba(var(--v-theme-on-surface), 0.08);