skillbox/client/src/components/content-blocks/SubtitleBlock.vue

21 lines
338 B
Vue

<template>
<h5
class="subtitle"
v-html="value.text"/>
</template>
<script>
export default {
props: ['value']
};
</script>
<style scoped lang="scss">
@import "@/styles/_variables.scss";
.subtitle {
padding-top: 1px;
margin-bottom: $large-spacing;
line-height: $default-heading-line-height;
}
</style>