@eox/pages-theme-eox 0.5.1 → 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 +1 -1
- package/src/Layout.vue +3 -2
- package/src/components/PricingTable.vue +4 -3
- package/src/style.css +8 -0
package/package.json
CHANGED
package/src/Layout.vue
CHANGED
|
@@ -339,6 +339,7 @@ header {
|
|
|
339
339
|
padding-top: 10rem !important;
|
|
340
340
|
padding-bottom: 10rem !important;
|
|
341
341
|
height: 100svh;
|
|
342
|
+
max-height: 1000px;
|
|
342
343
|
}
|
|
343
344
|
@media (max-width: 1024px) {
|
|
344
345
|
header {
|
|
@@ -366,9 +367,9 @@ header > .hero-container {
|
|
|
366
367
|
display: grid;
|
|
367
368
|
grid-gap: 2rem;
|
|
368
369
|
grid-template-areas:
|
|
370
|
+
"image"
|
|
369
371
|
"title"
|
|
370
|
-
"actions"
|
|
371
|
-
"image";
|
|
372
|
+
"actions";
|
|
372
373
|
grid-auto-rows: min-content;
|
|
373
374
|
text-align: center;
|
|
374
375
|
z-index: 1;
|
|
@@ -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
|
|
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:
|
|
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:
|
|
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,
|