kandimat-user-app/src/app/about/components/index.vue
Christoph Lienhard 4fedc4ef80 more cleanup
* improve imprint
* rename party -> person in route
* remove unnecessary components in about and partner
* fix email addresses
* remove most of the theses for easier manual testing (will be replaced by backendcalls in the future anyways)
2020-06-13 14:50:09 +02:00

33 lines
518 B
Vue

<template>
<section>
<h1>{{ $t('about.headline') }}</h1>
<div class="about-content">
<div class="about-text">
<v-markdown :source="$t('about.content')" />
</div>
</div>
</section>
</template>
<style lang="scss" scoped>
@import "~@/styles/colors";
@import "~@/styles/layout";
$breakpoint: 630px;
h1,
p {
margin-bottom: $base-gap;
}
.about-content {
display: flex;
flex-direction: column;
}
.about-text {
margin-bottom: $base-gap;
}
</style>