change bg color

This commit is contained in:
Jay 2018-08-30 11:40:45 +08:00
parent ce2ba07b7f
commit 1f01df9855

View File

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