fix homepage fixed problem

This commit is contained in:
RainSun 2020-02-23 14:37:55 +08:00
parent a985740915
commit a142a9431b
3 changed files with 8 additions and 3 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 264 KiB

After

Width:  |  Height:  |  Size: 17 KiB

View File

@ -1,8 +1,8 @@
import axios from 'axios'
export const api = axios.create({
// baseURL: 'https://ccb.canary.moe/api/',
baseURL: window.location.origin + '/api/',
baseURL: 'https://ccb.canary.moe/api/',
// baseURL: window.location.origin + '/api/',
// baseURL: 'http://152.136.99.231:8001' + '/api/',
headers: {
'Content-Type': 'application/x-www-form-urlencoded',

View File

@ -62,7 +62,7 @@
</md-app-drawer>
<md-app-content>
<div :style="`height:${search_start? '102':'56'}px`"></div>
<div ref='list_placeholder' :style="`height:${search_start? '86':'40'}px`"></div>
<md-empty-state
md-icon="devices_other"
md-label="Create your first code"
@ -124,6 +124,7 @@ export default {
//
// console.log(clientHeight);
this.$refs.home.children[0].style.minHeight = clientHeight + 'px';
this.$refs.list_placeholder.parentNode.style.maxHeight = clientHeight + 'px';
},
//
@ -383,10 +384,14 @@ export default {
.md-speed-dial.md-bottom-right {
position: fixed !important;
}
}
// Demo purposes only
.md-drawer {
width: 240px;
max-width: calc(100vw - 125px);
}
.md-app-scroller > div {
overflow-y:scroll!important;
}
</style>