lock_Maintenance/components/Cp_Bg.vue

39 lines
545 B
Vue

<template>
<!--背景组件直接使用即可-->
<view class="container">
<slot></slot>
</view>
</template>
<script>
export default {
name:"Cp_Bg",
data() {
return {
};
}
}
</script>
<style lang="scss">
$globalWidth: 650rpx;
$buttonColor: #0e7ff5;
.container {
display: flex;
background: -webkit-linear-gradient(270deg,
rgba(227, 239, 249, 1) 0%,
rgba(245, 245, 247, 1) 100%);
flex-direction: column;
/* align-items: center; */
width: 100%;
height: 100vh;
align-items: center;
}
</style>