summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Tirk <paultirk@paultirk.com>2023-11-01 20:44:22 +0100
committerSean Molenaar <SMillerDev@users.noreply.github.com>2023-11-07 20:01:54 +0100
commit282056f07cb86016fd4cda141756f3c8221f8b28 (patch)
treedf9d2d7dc9ec6e2a585833ba18a146e262a93b98 /src
parentb568eec0be82e466bf0899915a99bf75aa74a984 (diff)
remove unnecessary height of app content details component
Signed-off-by: Paul Tirk <paultirk@paultirk.com>
Diffstat (limited to 'src')
-rw-r--r--src/components/ContentTemplate.vue6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/components/ContentTemplate.vue b/src/components/ContentTemplate.vue
index 5b828c3bd..9d42e56b8 100644
--- a/src/components/ContentTemplate.vue
+++ b/src/components/ContentTemplate.vue
@@ -14,7 +14,7 @@
</NcAppContentList>
</template>
- <NcAppContentDetails class="content-details-container">
+ <NcAppContentDetails>
<FeedItemDisplay v-if="selectedFeedItem" :item="selectedFeedItem" />
<NcEmptyContent v-else
:title="t('news', 'No article selected')"
@@ -98,8 +98,4 @@ function unselectItem() {
font-weight: 700;
}
-.content-details-container {
- height: 100%
-}
-
</style>