1
0
Ответвление 0
Temps_Reel_Robot/software/UserInterfaceWeb/InterfaceUtilisateur/src/components/LoadingScreen.vue
Sébastien DI MERCURIO 776a2f4ce6 initial commit
2018-08-27 16:39:49 +02:00

18 строки
Без EOL
486 Б
Vue

<template>
<div class="loading">
<v-progress-circular indeterminate v-bind:size="70" v-bind:width="7" color="purple"></v-progress-circular>
<h1>Non Connecté ! Veuillez vérifier que le serveur node a bien été lancé. Puis rafraichissez la page !</h1>
</div>
</template>
<style>
.loading{
padding-top: 10%;
position:fixed;
z-index: 10;
width:100%;
height: 100%;
background-color: rgb(46, 37, 37);
color: rgba(255, 255, 255, 0.788);
}
</style>