Skip to content
Snippets Groups Projects
Commit eb250ebf authored by Julian's avatar Julian
Browse files

Adjust position of loader in splash

parent 0e7d441e
No related branches found
No related tags found
1 merge request!1123Resolve "Finalise Vuetify app as SPA"
<template>
<div v-if="splash" id="logo-container">
<img src="/logo" alt="Logo" id="logo" width="600" />
<div v-if="splash">
<div id="logo-container">
<img src="/logo" alt="Logo" id="logo" width="600" />
</div>
<div class="lds-ellipsis">
<div></div>
<div></div>
......@@ -54,7 +56,10 @@ export default {
.lds-ellipsis {
display: inline-block;
position: relative;
position: absolute;
bottom: 5%;
left: 50%;
transform: translate(-50%);
width: 80px;
height: 80px;
}
......
......@@ -7,18 +7,18 @@
id="logo"
width="600"
>
<div class="lds-ellipsis">
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<noscript>
{% blocktrans %}
This webbrowser doesn't support JavaScript, or it's execution is blocked. Please use another browser to continue.
{% endblocktrans %}
</noscript>
</div>
<div class="lds-ellipsis">
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<style>
#logo {
......@@ -41,7 +41,10 @@
.lds-ellipsis {
display: inline-block;
position: relative;
position: absolute;
bottom: 5%;
left: 50%;
transform: translate(-50%);
width: 80px;
height: 80px;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment