basic layout

This commit is contained in:
Settel 2021-07-30 17:03:31 +02:00
parent 44ac6d1680
commit a970bf31d0
2 changed files with 21 additions and 4 deletions

View File

@ -0,0 +1,17 @@
<template>
<div class="layout-default">
<Nuxt />
</div>
</template>
<style lang="scss">
html, body {
margin: 0;
padding: 0;
}
body {
background-color: #402080;
color: #ffff80;
font-family: monospace;
}
</style>

View File

@ -1,8 +1,8 @@
<template> <template>
<div class="page-index"> <div class="page-index">
<div class="page-index__title"> <h1 class="page-index__title">
Yay! Know Your Teammates!
</div> </h1>
</div> </div>
</template> </template>
@ -13,7 +13,7 @@ export default {}
<style lang="scss"> <style lang="scss">
.page-index { .page-index {
&__title { &__title {
color: #606060; color: #e0e080;
} }
} }
</style> </style>