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

40 lines
620 B
Vue
Raw Normal View History

2017-08-15 20:26:34 +02:00
<template>
<section>
<h1>{{ $t('privacy.headline') }}</h1>
2017-08-21 23:22:33 +02:00
<ul>
2017-08-26 16:41:40 +02:00
<li v-for="(topic, index) of $t('privacy.topics')">
<h2 v-if="index !== 0">{{ topic.title }}</h2>
2017-08-21 23:22:33 +02:00
<p v-for="content of topic.content">
{{ content }}
</p>
</li>
</ul>
2017-08-15 20:26:34 +02:00
</section>
</template>
<script>
export default {
name: 'Datenschutz'
}
</script>
<style lang="scss" scoped>
2019-03-20 23:19:13 +01:00
@import "~@/styles/layout";
2017-08-15 20:26:34 +02:00
2017-08-26 18:38:47 +02:00
h1 {
2017-08-15 20:26:34 +02:00
margin-bottom: $base-gap;
}
2017-08-26 00:45:59 +02:00
ul {
list-style: none;
2017-08-26 18:38:47 +02:00
li {
margin-bottom: $base-gap * 2;
}
2017-08-26 00:45:59 +02:00
}
h2 {
margin-bottom: $small-gap;
}
2017-08-15 20:26:34 +02:00
</style>