| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <template>
- <div class="tab-page">
- <div class="page-body">
- <h1>我的守护</h1>
- <p class="desc">守护记录开发中</p>
- </div>
- </div>
- </template>
- <style scoped lang="less">
- .tab-page {
- width: 100%;
- height: 100%;
- min-height: calc(var(--vh, 1vh) * 100);
- background: var(--main-bg);
- position: relative;
- overflow: hidden;
- }
- .page-body {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- height: calc(var(--vh, 1vh) * 100 - 80rem);
- padding: 20rem;
- box-sizing: border-box;
- h1 {
- margin: 0 0 12rem;
- font-size: 20rem;
- color: #fff;
- font-weight: 500;
- }
- .desc {
- margin: 0;
- font-size: 14rem;
- color: rgba(255, 255, 255, 0.5);
- }
- }
- </style>
|