@eox/pages-theme-eox 0.5.2 → 0.5.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eox/pages-theme-eox",
3
- "version": "0.5.2",
3
+ "version": "0.5.3",
4
4
  "type": "module",
5
5
  "description": "Vitepress Theme with EOX branding",
6
6
  "main": "src/index.js",
@@ -224,7 +224,8 @@
224
224
  </template>
225
225
 
226
226
  <p class="small grey-text m-4" v-if="showVAT">
227
- * All prices are given excluding VAT. Prices are valid until 2025-06-30
227
+ * All prices are given excluding VAT. Prices are valid until
228
+ {{ showVAT }}.
228
229
  </p>
229
230
  </div>
230
231
  </template>
@@ -238,7 +239,7 @@ export default {
238
239
  default: () => ({
239
240
  title: "Pricing Options",
240
241
  showSales: true,
241
- showVAT: true,
242
+ showVAT: "2025-06-30",
242
243
  options: [],
243
244
  plans: [],
244
245
  details: [],
@@ -250,7 +251,7 @@ export default {
250
251
  title: "",
251
252
  showSales: true,
252
253
  contactLink: "",
253
- showVAT: true,
254
+ showVAT: "2025-06-30",
254
255
  localOptions: [],
255
256
  localPlans: [],
256
257
  localDetails: [],
package/src/style.css CHANGED
@@ -99,6 +99,14 @@ body {
99
99
  font-size: 1.75rem;
100
100
  }
101
101
 
102
+ .VPHome .vp-doc h1,
103
+ .VPHome .vp-doc h2,
104
+ .VPHome .vp-doc h3,
105
+ .VPHome .vp-doc h4,
106
+ .VPHome .vp-doc h5 {
107
+ line-height: normal;
108
+ }
109
+
102
110
  .VPHome .vp-doc h1 a.header-anchor,
103
111
  .VPHome .vp-doc h2 a.header-anchor,
104
112
  .VPHome .vp-doc h3 a.header-anchor,