mirror of
https://github.com/YunoHost/yunohost-portal.git
synced 2024-09-03 20:06:23 +02:00
71 lines
835 B
Vue
71 lines
835 B
Vue
|
<script setup lang="ts">
|
||
|
defineProps<{
|
||
|
content: string
|
||
|
}>()
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<section class="intro" v-html="content" />
|
||
|
</template>
|
||
|
|
||
|
<style>
|
||
|
.intro p {
|
||
|
@apply mb-4;
|
||
|
}
|
||
|
|
||
|
.intro a {
|
||
|
@apply link;
|
||
|
@apply font-normal;
|
||
|
}
|
||
|
|
||
|
.intro em {
|
||
|
@apply italic;
|
||
|
}
|
||
|
.intro strong {
|
||
|
@apply font-bold;
|
||
|
}
|
||
|
|
||
|
.intro ul,
|
||
|
.intro ol {
|
||
|
@apply list-disc list-inside mb-4;
|
||
|
}
|
||
|
.intro ol {
|
||
|
@apply list-decimal;
|
||
|
}
|
||
|
|
||
|
.intro dt {
|
||
|
@apply font-bold;
|
||
|
}
|
||
|
.intro dd {
|
||
|
@apply mb-1;
|
||
|
}
|
||
|
.intro dd:last-of-type {
|
||
|
@apply mb-4;
|
||
|
}
|
||
|
|
||
|
.intro h2 {
|
||
|
@apply text-5xl font-bold my-10;
|
||
|
}
|
||
|
.intro h3 {
|
||
|
@apply text-4xl font-medium my-6;
|
||
|
}
|
||
|
.intro h4 {
|
||
|
@apply text-3xl font-bold my-4;
|
||
|
}
|
||
|
.intro h5 {
|
||
|
@apply text-2xl my-3;
|
||
|
}
|
||
|
.intro h6 {
|
||
|
@apply text-xl font-bold my-2;
|
||
|
}
|
||
|
|
||
|
.intro blockquote {
|
||
|
@apply px-4 my-6;
|
||
|
}
|
||
|
|
||
|
.intro img,
|
||
|
.intro video {
|
||
|
@apply my-6;
|
||
|
}
|
||
|
</style>
|