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

31 lines
876 B
Vue
Raw Normal View History

2023-04-21 09:39:56 +00:00
<script setup lang="ts">
2023-05-02 15:22:46 +00:00
import KUNGalgameTopBar from '@/components/KUNGalgameTopBar.vue'
import MainPageContent from './content/MainPageContent.vue'
import MainPageFooter from './footer/MainPageFooter.vue'
2023-04-14 13:58:13 +00:00
</script>
<template>
<!-- 可视部分的容器 -->
<div class="visual-wrapper">
2023-05-02 09:44:23 +00:00
<KUNGalgameTopBar :isMainPage="true" />
2023-04-18 09:26:47 +00:00
<MainPageContent />
<MainPageFooter />
2023-04-14 13:58:13 +00:00
</div>
</template>
2023-05-14 07:16:28 +00:00
<style lang="less" scoped>
2023-04-14 13:58:13 +00:00
.visual-wrapper {
height: 1500px;
display: flex;
flex-direction: column;
2023-05-24 13:51:36 +00:00
// background-image: url(../../assets/images/bg/bg1.png);
2023-04-19 14:08:50 +00:00
/* background-image: url(../../assets/images/bg/bg2.png); */
2023-04-14 13:58:13 +00:00
background-repeat: no-repeat;
background-position: center;
background-size: cover;
2023-05-01 15:06:46 +00:00
min-width: 800px;
2023-05-02 15:22:46 +00:00
font-family: 'adobe-clean', 'Source Sans Pro', -apple-system,
'BlinkMacSystemFont', 'Segoe UI,Roboto', sans-serif;
2023-04-14 13:58:13 +00:00
}
</style>