
Homescreen adjusted Warning adjusted Question component (not Questionnaire) adjusted Fixed questionmaire typo
58 lines
1.1 KiB
Vue
58 lines
1.1 KiB
Vue
<style scoped>
|
|
.home {
|
|
display: flex;
|
|
flex-flow: column;
|
|
justify-content: center;
|
|
padding: 0.5em;
|
|
}
|
|
|
|
#welcome-image {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
width: 85%;
|
|
}
|
|
|
|
p {
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
width: 85%;
|
|
}
|
|
|
|
#information {
|
|
display: block;
|
|
margin: 0 auto;
|
|
padding: 5%;
|
|
font-size: 0.8em;
|
|
}
|
|
|
|
#title {
|
|
font-size: 1.2em;
|
|
color: #23286B;
|
|
}
|
|
</style>
|
|
|
|
<template>
|
|
<div class="home">
|
|
<img id="welcome-image" alt="Welcome" src="../assets/welcome.png">
|
|
<div>
|
|
<p id="title"><b>COVID</b>assist</p>
|
|
<p>Die COVID-19 Verhaltensdiagnose, die keine Daten speichert.</p>
|
|
<router-link style="text-decoration:none" to="/warning"><button>Infektionsrisiko ermitteln</button></router-link>
|
|
</div>
|
|
|
|
<a id="information" href="https://www.rki.de/SharedDocs/FAQ/NCOV2019/FAQ_Liste.html"><b>Informationen zu COVID-19</b></a>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
// @ is an alias to /src
|
|
// import HelloWorld from '@/components/HelloWorld.vue'
|
|
|
|
export default {
|
|
name: 'Home',
|
|
components: {
|
|
// HelloWorld
|
|
}
|
|
}
|
|
</script>
|