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