bday2020/src/App.vue

40 lines
613 B
Vue
Raw Normal View History

2020-09-04 23:52:05 +00:00
<template>
<div id="app">
2020-09-05 16:25:28 +00:00
<img class="logo" alt="Lenaistenlogo" src="./assets/logo.png">
<BDay />
2020-09-04 23:52:05 +00:00
</div>
</template>
<script>
2020-09-05 16:25:28 +00:00
import BDay from './components/BDay.vue'
2020-09-04 23:52:05 +00:00
export default {
name: 'App',
components: {
2020-09-05 16:25:28 +00:00
BDay
2020-09-04 23:52:05 +00:00
}
}
</script>
<style>
2020-09-05 16:25:28 +00:00
html {
background-image: url('/bg.jpg');
height: 100%;
/* overflow:hidden; */
}
2020-09-04 23:52:05 +00:00
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
</style>
2020-09-05 16:25:28 +00:00
<style scoped>
img.logo {
max-height: 10em;
}
</style>