@fy-/fws-vue 2.0.73 → 2.0.75

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -112,7 +112,7 @@ useSchemaOrg([
112
112
  v-if="post.CoverUUID"
113
113
  :content="`${props.imageDomain}/${post.CoverUUID}?vars=format=webp:resize=512x512`"
114
114
  />
115
- <div class="py-4 px-4 w-full" v-if="showTitle">
115
+ <div class="py-4 px-4 !max-w-full mx-auto w-full" v-if="showTitle">
116
116
  <h1
117
117
  class="mb-4 text-4xl tracking-tight font-extrabold text-center text-fv-neutral-900 dark:text-white"
118
118
  >
@@ -133,7 +133,7 @@ useSchemaOrg([
133
133
  />
134
134
  <section
135
135
  itemprop="articleBody"
136
- class="prose dark:prose-invert w-full mb-6"
136
+ class="prose dark:prose-invert !max-w-full mx-auto w-full mb-6"
137
137
  v-html="post.Body"
138
138
  ></section>
139
139
  </article>
@@ -53,9 +53,8 @@ onUnmounted(() => {
53
53
 
54
54
  <h3
55
55
  class="mb-5 text-lg font-normal text-fv-neutral-500 dark:text-fv-neutral-400"
56
- >
57
- {{ desc ? desc : title }}
58
- </h3>
56
+ v-html="desc ? desc : title"
57
+ ></h3>
59
58
  <div class="flex justify-between gap-3 mt-4">
60
59
  <button class="btn danger defaults" @click="_onConfirm()">
61
60
  {{ $t("confirm_modal_cta_confirm") }}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fy-/fws-vue",
3
- "version": "2.0.73",
3
+ "version": "2.0.75",
4
4
  "author": "Florian 'Fy' Gasquez <m@fy.to>",
5
5
  "license": "MIT",
6
6
  "repository": {