change bg color

This commit is contained in:
Jay 2018-08-30 11:40:45 +08:00
parent ce2ba07b7f
commit 1f01df9855
1 changed files with 2 additions and 4 deletions

View File

@ -5,9 +5,6 @@
</template>
<style lang="less" scoped>
html,body,#app {
background-color: rgba(0, 0, 0, 0);
}
.show-donate {
padding: 5px 10px;
}
@ -31,7 +28,8 @@ export default {
}
},
mounted () {
document.getElementById('app').style.backgroundColor = 'inherit'
document.getElementById('app').style.backgroundColor = 'rgba(0, 0, 0, 0)'
document.body.style.backgroundColor = 'rgba(0, 0, 0, 0)'
this.client = axios.create({
baseURL: apiUrl
})