cinqcinqdev-seo 1.0.4 → 1.0.5

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.
package/dist/module.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "compatibility": {
5
5
  "nuxt": ">=3.0.0"
6
6
  },
7
- "version": "1.0.4",
7
+ "version": "1.0.5",
8
8
  "builder": {
9
9
  "@nuxt/module-builder": "1.0.2",
10
10
  "unbuild": "unknown"
@@ -1227,17 +1227,17 @@ export const computeBlockCss = (props, blockId) => {
1227
1227
  const parts = [];
1228
1228
  const titleSels = `${id} h1,${id} h2,${id} h3,${id} h4`;
1229
1229
  const tr = [];
1230
- if (s.titleFontSize) tr.push(`font-size:${s.titleFontSize}px`);
1231
- if (s.titleFontWeight) tr.push(`font-weight:${s.titleFontWeight}`);
1232
- if (s.titleFontStyle) tr.push(`font-style:${s.titleFontStyle}`);
1233
- if (s.titleTextDecoration) tr.push(`text-decoration:${s.titleTextDecoration}`);
1234
- if (s.titleColor) tr.push(`color:${s.titleColor}`);
1230
+ if (s.titleFontSize) tr.push(`font-size:${s.titleFontSize}px !important`);
1231
+ if (s.titleFontWeight) tr.push(`font-weight:${s.titleFontWeight} !important`);
1232
+ if (s.titleFontStyle) tr.push(`font-style:${s.titleFontStyle} !important`);
1233
+ if (s.titleTextDecoration) tr.push(`text-decoration:${s.titleTextDecoration} !important`);
1234
+ if (s.titleColor) tr.push(`color:${s.titleColor} !important`);
1235
1235
  if (tr.length) parts.push(`${titleSels}{${tr.join(";")}}`);
1236
1236
  const bodySels = `${id} p,${id} li`;
1237
1237
  const br2 = [];
1238
- if (s.bodyFontSize) br2.push(`font-size:${s.bodyFontSize}px`);
1239
- if (s.bodyFontWeight) br2.push(`font-weight:${s.bodyFontWeight}`);
1240
- if (s.bodyColor) br2.push(`color:${s.bodyColor}`);
1238
+ if (s.bodyFontSize) br2.push(`font-size:${s.bodyFontSize}px !important`);
1239
+ if (s.bodyFontWeight) br2.push(`font-weight:${s.bodyFontWeight} !important`);
1240
+ if (s.bodyColor) br2.push(`color:${s.bodyColor} !important`);
1241
1241
  if (br2.length) parts.push(`${bodySels}{${br2.join(";")}}`);
1242
1242
  const gr = [];
1243
1243
  if (s.lineHeight) gr.push(`line-height:${s.lineHeight}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cinqcinqdev-seo",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "A reusable Nuxt 3 admin CMS module with visual page editor powered by Supabase",
5
5
  "license": "MIT",
6
6
  "module": "./dist/module.mjs",