Skip to content

Commit

Permalink
fix(theme): make features support line wrapping (#1913)
Browse files Browse the repository at this point in the history
Co-authored-by: Divyansh Singh <40380293+brc-dd@users.noreply.github.com>
  • Loading branch information
you-hengh and brc-dd committed Feb 11, 2023
1 parent 35a1760 commit ea43076
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/client/theme-default/components/VPFeature.vue
Expand Up @@ -24,8 +24,8 @@ defineProps<{
:width="icon.width"
/>
<div v-else-if="icon" class="icon">{{ icon }}</div>
<h2 class="title">{{ title }}</h2>
<p class="details">{{ details }}</p>
<h2 class="title" v-html="title"></h2>
<p class="details" v-html="details"></p>

<div v-if="linkText" class="link-text">
<p class="link-text-value">
Expand Down

0 comments on commit ea43076

Please sign in to comment.