Removed useless v-bind:style on downloader object.

This commit is contained in:
Kylart 2017-03-07 01:00:30 +01:00
parent 1aa9b765f6
commit 4f5c6f8ee2
3 changed files with 3 additions and 5 deletions

View File

@ -56,8 +56,7 @@
</div>
<main class="mdl-layout__content">
<div class="page-content">
<div id="download-container" v-if="show"
v-bind:style="{ display: display }">
<div id="download-container" v-if="show">
<downloader></downloader>
</div>
<div id="releases" class="mdl-grid" v-if="show">

View File

@ -271,8 +271,7 @@ exports.lastPage = 'release'
let downloader = new Vue({
el: '#download-container',
data: {
show: false,
display: "none",
show: false
}
})

View File

@ -149,6 +149,7 @@ body
/* --------------- LOADER ---------------- */
#loader-container
{
background-color: rgba(255, 255, 255, 0.8);
width: 100%;
height: 100%;
text-align: center;
@ -177,7 +178,6 @@ body
#download-container
{
display: none;
height: 100%;
width: 100%
}