This repository has been archived on 2026-06-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
spellsaurus/client/src/app.vue
2020-10-09 21:10:37 +02:00

22 lines
352 B
Vue

<template>
<div id="srs">
<header>
<navbar/>
</header>
<router-view/>
</div>
</template>
<script>
export default {
name: 'app'
}
</script>
<style lang="scss" scoped>
#srs {
padding-top: 50px;
min-height: 100vh;
background: url('./assets/images/bg1.png') center center fixed repeat;
}
</style>