xdrm.io/src/App.vue

46 lines
740 B
Vue
Raw Normal View History

2019-05-07 17:10:48 +00:00
<template>
<div id="app">
<Banner/>
<Skills/>
</div>
2019-05-07 17:10:48 +00:00
</template>
<script lang="ts">
import { Component, Vue } from 'vue-property-decorator';
import Banner from './components/Banner.vue';
import Skills from './components/Skills.vue';
2019-05-07 17:10:48 +00:00
@Component({
components: {
Banner,
Skills,
},
2019-05-07 17:10:48 +00:00
})
export default class App extends Vue {
}
2019-05-07 17:10:48 +00:00
</script>
<style lang="scss">
#app {
display: flex;
position: absolute;
top: 0;
left: 0;
width: 100%;
2019-05-09 16:56:46 +00:00
min-height: 100%;
height: auto;
padding-bottom: 4vw;
flex-flow: column nowrap;
// justify-content: flex-start;
// align-items: auto;
// background: url('./assets/wave.footer.svg') bottom no-repeat;
// background-size: 100vw auto;
overflow: hidden;
}
2019-05-07 17:10:48 +00:00
</style>