We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
yyx990803
kiaking
brc-dd
posva
Learn more about funding links in repositories.
Report abuse
1 parent e812916 commit 37dbe89Copy full SHA for 37dbe89
src/client/theme-default/components/VPHero.vue
@@ -29,7 +29,7 @@ const heroImageSlotExists = inject('hero-image-slot-exists') as Ref<boolean>
29
<div class="main">
30
<slot name="home-hero-info-before" />
31
<slot name="home-hero-info">
32
- <h1>
+ <h1 class="heading">
33
<span v-if="name" v-html="name" class="name clip"></span>
34
<span v-if="text" v-html="text" class="text"></span>
35
</h1>
@@ -125,9 +125,14 @@ const heroImageSlotExists = inject('hero-image-slot-exists') as Ref<boolean>
125
}
126
127
128
+.heading {
129
+ display: flex;
130
+ flex-direction: column;
131
+}
132
+
133
.name,
134
.text {
- display: inline-block;
135
+ width: fit-content;
136
max-width: 392px;
137
letter-spacing: -0.4px;
138
line-height: 40px;
0 commit comments