bday2020/ui/src/App.vue

47 lines
No EOL
757 B
Vue

<template>
<div id="app">
<img class="logo" alt="Lenaistenlogo" src="./assets/logo.png" />
<Gratulation />
</div>
</template>
<script>
import Gratulation from "./components/Gratulation.vue";
export default {
name: "App",
components: {
Gratulation,
},
computed: {
get_id: () => {
return window.location.pathname.substring(1);
},
},
};
</script>
<style>
html {
background-image: url("./assets/bg.jpg");
height: 100%;
/* overflow:hidden; */
}
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #34214f;
margin-top: 60px;
}
</style>
<style scoped>
img.logo {
max-height: 10em;
}
</style>