Logo styling, file upload bugfix and modules anchor bugfix

This commit is contained in:
Burak Civan
2021-06-01 10:30:57 +03:00
parent d99e42520d
commit 57efd15b5f
7 changed files with 48 additions and 20 deletions

View File

@ -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 {