You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
677 B
35 lines
677 B
.container {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 200rpx 0;
|
|
box-sizing: border-box;
|
|
}
|
|
page {
|
|
height: 100%;
|
|
background-color: #f8f8f8;
|
|
color: #333;
|
|
-webkit-font-smoothing: antialiased;
|
|
font-family: 'PingFang SC',
|
|
Helvetica,
|
|
'STHeiti STXihei',
|
|
'Microsoft YaHei',
|
|
Tohoma,
|
|
Arial,
|
|
sans-serif;
|
|
}
|
|
|
|
.view-page {
|
|
display: flex;
|
|
height: 100%;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.view-page .page-content {
|
|
flex: 1;
|
|
overflow-y: auto;
|
|
box-sizing: border-box;
|
|
}
|
|
|