29 lines
482 B
Vue
29 lines
482 B
Vue
<template>
|
|
<div class="mod-home">
|
|
<img class="homeImg" src="~@/assets/img/home/home-bg.png">
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
}
|
|
</script>
|
|
|
|
<style scoped="scoped" lang="scss">
|
|
.mod-home {
|
|
line-height: 1.5;
|
|
min-height: calc(100vh - 150px);
|
|
background: #fff;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-flow: column;
|
|
}
|
|
.homeImg {
|
|
width: 376px;
|
|
height: 270px;
|
|
object-fit: cover;
|
|
}
|
|
</style>
|
|
|