27 lines
430 B
Vue
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>
|