You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

58 lines
990 B
Vue

<script setup lang="ts">
defineProps<{
title: string
details?: string
}>()
</script>
<template>
<div class="Feature">
<article class="box">
<h2 class="title" v-html="title"></h2>
<p v-if="details" class="details" v-html="details"></p>
</article>
</div>
</template>
<style scoped>
.Feature {
color: inherit;
display: block;
border: 4px solid var(--vp-c-brand-soft);
border-radius: var(--vp-border-radius);
height: 100%;
overflow-x: hidden;
box-shadow: var(--vp-shadow-6);
transition: box-shadow .3s cubic-bezier(.22,.61,.36,1);
}
.box {
display: flex;
flex-direction: column;
padding: 24px;
height: 100%;
}
.title {
line-height: 24px;
font-size: 16px;
font-weight: 600;
}
.details {
flex-grow: 1;
padding-top: 8px;
line-height: 24px;
font-size: 14px;
font-weight: 500;
color: var(--vp-c-text-2);
}
.details:deep(a) {
color: var(--vp-c-brand-1);
}
.details:deep(a:hover) {
text-decoration: underline;
}
</style>