37 lines
486 B
Vue
37 lines
486 B
Vue
|
<template>
|
||
|
<view class="container">
|
||
|
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss">
|
||
|
$globalWidth: 600rpx;
|
||
|
$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>
|