kandimat-user-app/src/app/faq/components/index.vue

40 lines
602 B
Vue
Raw Normal View History

<template>
<section>
2017-08-13 14:03:38 +02:00
<h1>{{ $t('faq.headline') }}</h1>
2017-08-21 23:22:33 +02:00
<ul>
<li v-for="question of $t('faq.questions')">
<h2>{{ question.title }}</h2>
<p v-for="answer of question.answer">
{{ answer }}
</p>
</li>
</ul>
</section>
</template>
<script>
export default {
name: 'FAQ'
}
</script>
2017-08-12 23:00:43 +02:00
<style lang="scss" scoped>
2019-03-20 23:19:13 +01:00
@import "~@/styles/layout";
2017-08-12 23:00:43 +02:00
h1 {
margin-bottom: $base-gap;
}
2017-08-26 01:46:12 +02:00
ul {
list-style: none;
li:not(:last-child) {
2017-08-26 18:38:47 +02:00
margin-bottom: $base-gap * 2;
2017-08-26 01:46:12 +02:00
}
}
h2 {
margin-bottom: $small-gap;
}
2017-08-12 23:00:43 +02:00
</style>