kun-galgame-vue/src/views/Home/KUNGalgameMainPage.vue

36 lines
946 B
Vue
Raw Normal View History

2023-04-14 13:58:13 +00:00
<script lang="ts">
import KUNGalgameTopBar from "../../components/KUNGalgameTopBar.vue";
2023-04-18 08:04:47 +00:00
import MainPageContent from "./content/MainPageContent.vue";
2023-04-18 09:26:47 +00:00
import MainPageFooter from "./footer/MainPageFooter.vue";
2023-04-14 13:58:13 +00:00
export default {
name: "KUNGalgameMainPage",
2023-04-18 09:26:47 +00:00
components: { KUNGalgameTopBar, MainPageContent, MainPageFooter },
2023-04-14 13:58:13 +00:00
};
</script>
<template>
<!-- 可视部分的容器 -->
<div class="visual-wrapper">
<KUNGalgameTopBar />
2023-04-18 09:26:47 +00:00
<MainPageContent />
<MainPageFooter />
2023-04-14 13:58:13 +00:00
</div>
</template>
2023-04-18 09:26:47 +00:00
<style scoped>
2023-04-14 13:58:13 +00:00
.visual-wrapper {
height: 1500px;
display: flex;
flex-direction: column;
2023-04-18 13:22:02 +00:00
background-image: url(../../assets/images/bg.png);
2023-04-18 09:26:47 +00:00
/* background-image: url(./img/bg-dark.png); */
2023-04-14 13:58:13 +00:00
background-repeat: no-repeat;
background-position: center;
background-size: cover;
min-width: 700px;
font-family: "adobe-clean", "Source Sans Pro", -apple-system,
"BlinkMacSystemFont", "Segoe UI,Roboto", sans-serif;
}
</style>