summaryrefslogtreecommitdiffstats
path: root/apps/theming/src/components/ItemPreview.vue
diff options
context:
space:
mode:
Diffstat (limited to 'apps/theming/src/components/ItemPreview.vue')
-rw-r--r--apps/theming/src/components/ItemPreview.vue6
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/theming/src/components/ItemPreview.vue b/apps/theming/src/components/ItemPreview.vue
index dd70a66ec96..5f817d04f49 100644
--- a/apps/theming/src/components/ItemPreview.vue
+++ b/apps/theming/src/components/ItemPreview.vue
@@ -3,7 +3,7 @@
<div class="theming__preview-image" :style="{ backgroundImage: 'url(' + img + ')' }" @click="onToggle" />
<div class="theming__preview-description">
<h3>{{ theme.title }}</h3>
- <p>{{ theme.description }}</p>
+ <p class="theming__preview-explanation">{{ theme.description }}</p>
<span v-if="enforced" class="theming__preview-warning" role="note">
{{ t('theming', 'Theme selection is enforced') }}
</span>
@@ -123,6 +123,10 @@ export default {
background-size: cover;
}
+ &-explanation {
+ margin-bottom: 10px;
+ }
+
&-description {
display: flex;
flex-direction: column;