29 lines
No EOL
539 B
Vue
29 lines
No EOL
539 B
Vue
<template>
|
|
<div>
|
|
<img src="../assets/images/construction/barraconstruction.gif">
|
|
<h1>UNDER CONSTRUCTION</h1>
|
|
<img src="../assets/images/construction/ICONE_EN_CONSTRUCTION.GIF">
|
|
<p>come back soon!!!</p>
|
|
</div>
|
|
</template>
|
|
<style scoped>
|
|
|
|
div {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
align-items: center;
|
|
text-align: center;
|
|
}
|
|
|
|
@media screen and (max-width: 800px) {
|
|
img {
|
|
width: 100%;
|
|
}
|
|
h1 {
|
|
font-size: 32px;
|
|
}
|
|
}
|
|
|
|
</style> |