@eox/pages-theme-eox 0.4.12 → 0.4.14
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 +4 -1
- package/src/components/FeatureSection.vue +1 -1
- package/src/style.css +7 -9
package/package.json
CHANGED
package/src/Layout.vue
CHANGED
|
@@ -118,7 +118,10 @@
|
|
|
118
118
|
class="background-image"
|
|
119
119
|
:src="withBase(frontmatter.hero.image.src)"
|
|
120
120
|
/>
|
|
121
|
-
<h1
|
|
121
|
+
<h1
|
|
122
|
+
class="bold medium-margin"
|
|
123
|
+
style="font-size: clamp(2rem, 5vw, 45px)"
|
|
124
|
+
>
|
|
122
125
|
{{ frontmatter.hero.text }}
|
|
123
126
|
</h1>
|
|
124
127
|
<p>{{ frontmatter.hero.tagline }}</p>
|
package/src/style.css
CHANGED
|
@@ -16,18 +16,13 @@ body {
|
|
|
16
16
|
display: none;
|
|
17
17
|
}
|
|
18
18
|
|
|
19
|
-
.VPContent.
|
|
20
|
-
padding-top: 0;
|
|
21
|
-
margin-top: 0;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.vp-doc a.button {
|
|
19
|
+
.VPContent a.button {
|
|
25
20
|
text-decoration: none;
|
|
26
21
|
}
|
|
27
22
|
|
|
28
|
-
.
|
|
29
|
-
.
|
|
30
|
-
.
|
|
23
|
+
.VPContent h1.large,
|
|
24
|
+
.VPContent h2.large,
|
|
25
|
+
.VPContent h3.large {
|
|
31
26
|
font-size: normal;
|
|
32
27
|
font-weight: normal;
|
|
33
28
|
line-height: normal;
|
|
@@ -39,6 +34,7 @@ body {
|
|
|
39
34
|
}
|
|
40
35
|
|
|
41
36
|
@media (min-width: 960px) {
|
|
37
|
+
.VPHome,
|
|
42
38
|
.VPPage {
|
|
43
39
|
width: 100%;
|
|
44
40
|
padding: 48px 64px;
|
|
@@ -46,11 +42,13 @@ body {
|
|
|
46
42
|
}
|
|
47
43
|
|
|
48
44
|
@media (min-width: 640px) {
|
|
45
|
+
.VPHome,
|
|
49
46
|
.VPPage {
|
|
50
47
|
padding: 48px 48px;
|
|
51
48
|
}
|
|
52
49
|
}
|
|
53
50
|
|
|
51
|
+
.VPHome,
|
|
54
52
|
.VPPage {
|
|
55
53
|
margin: auto;
|
|
56
54
|
width: 100%;
|