knowyt/client/src/pages/index.vue
2021-08-04 23:35:41 +02:00

27 lines
430 B
Vue

<template>
<div class="startpage">
<TitleBox />
<div class="startpage__buttonline">
<PlayButton />
</div>
<div class="startpage__copyright">
© 2021, Settel
</div>
</div>
</template>
<style lang="scss">
.startpage {
&__buttonline {
display: flex;
justify-content: center;
}
&__copyright {
position: absolute;
right: 1em;
bottom: 0;
color: #000000;
}
}
</style>