xdrm.io/src/App.vue

45 lines
666 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;
2019-05-09 16:56:46 +00:00
padding-bottom: 5rem;
flex-flow: column nowrap;
// justify-content: flex-start;
// align-items: auto;
2019-05-09 16:56:46 +00:00
// overflow: hidden;
// overflow-y: auto;
}
2019-05-07 17:10:48 +00:00
</style>