Skip to content

Commit 37dbe89

Browse files
committedJan 20, 2025·
fix(theme): broken hero heading in certain viewports
1 parent e812916 commit 37dbe89

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed
 

‎src/client/theme-default/components/VPHero.vue

+7-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const heroImageSlotExists = inject('hero-image-slot-exists') as Ref<boolean>
2929
<div class="main">
3030
<slot name="home-hero-info-before" />
3131
<slot name="home-hero-info">
32-
<h1>
32+
<h1 class="heading">
3333
<span v-if="name" v-html="name" class="name clip"></span>
3434
<span v-if="text" v-html="text" class="text"></span>
3535
</h1>
@@ -125,9 +125,14 @@ const heroImageSlotExists = inject('hero-image-slot-exists') as Ref<boolean>
125125
}
126126
}
127127
128+
.heading {
129+
display: flex;
130+
flex-direction: column;
131+
}
132+
128133
.name,
129134
.text {
130-
display: inline-block;
135+
width: fit-content;
131136
max-width: 392px;
132137
letter-spacing: -0.4px;
133138
line-height: 40px;

0 commit comments

Comments
 (0)
Please sign in to comment.