vehicle-monitor/src/views/welcome/index.vue

43 lines
807 B
Vue
Raw Normal View History

<script lang="ts" setup>
2025-03-10 21:28:27 +08:00
import WelcomeContent from '@/views/welcome/components/welcome-content/index.vue';
import WelcomeFooter from '@/views/welcome/components/welcome-footer.vue';
</script>
<template>
2025-03-05 13:57:51 +08:00
<div class="welcome">
<welcome-content />
<welcome-footer />
</div>
</template>
2025-03-11 23:21:59 +08:00
<style lang="scss">
2025-03-13 18:39:39 +08:00
.welcome {
width: 100%;
height: 100%;
background: url('@/assets/images/welcome/bg/bg-particle.png') no-repeat center;
background-size: cover;
&__content {
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: space-around;
align-items: center;
p {
color: #fff;
font-size: 16px;
i {
color: var(--color-primary-secondary);
}
}
img {
width: 239px;
height: 34px;
}
}
}
</style>