44 lines
694 B
Vue
44 lines
694 B
Vue
<template>
|
|
<DefaultLayout></DefaultLayout>
|
|
<v-container>
|
|
<v-img class="roadmap-image" src="../../../images/roadmapbanner.png"></v-img>
|
|
|
|
</v-container>
|
|
|
|
<FooterLayout></FooterLayout>
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
import DefaultLayout from '@/layouts/DefaultLayout.vue';
|
|
import FooterLayout from '@/layouts/FooterLayout.vue';
|
|
|
|
|
|
</script>
|
|
|
|
|
|
<style>
|
|
.footer-donate {
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 3;
|
|
}
|
|
|
|
.footer-donate-container {
|
|
|
|
background-color: rgb(255, 255, 255);
|
|
|
|
}
|
|
|
|
.roadmap-image {
|
|
border-radius: 35px;
|
|
width: 50%;
|
|
/* reduces width by 50% */
|
|
height: auto;
|
|
/* maintains aspect ratio */
|
|
|
|
}
|
|
</style>
|