Logo styling, file upload bugfix and modules anchor bugfix
This commit is contained in:
@ -6,17 +6,13 @@
|
||||
:modules="modules.data"
|
||||
:currency_codes="currency_codes"
|
||||
:company="company"
|
||||
:pageLoad="page_loaded"
|
||||
></router-view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: "Wizard",
|
||||
data: function () {
|
||||
return {
|
||||
page_loaded: true,
|
||||
};
|
||||
},
|
||||
created() {
|
||||
let self = this;
|
||||
|
||||
@ -36,12 +32,7 @@ export default {
|
||||
return data.currency_codes[key];
|
||||
});
|
||||
|
||||
setTimeout(
|
||||
function () {
|
||||
self.page_loaded = false;
|
||||
}.bind(self),
|
||||
800
|
||||
);
|
||||
self.page_loaded = false;
|
||||
});
|
||||
},
|
||||
|
||||
@ -58,6 +49,7 @@ export default {
|
||||
taxes: {},
|
||||
finish: {},
|
||||
},
|
||||
page_loaded: true
|
||||
};
|
||||
},
|
||||
};
|
||||
@ -69,6 +61,11 @@ export default {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
z-index: 9999;
|
||||
}
|
||||
|
||||
.document-loading div {
|
||||
|
Reference in New Issue
Block a user