- Added pages for register and scoped styles

This commit is contained in:
Alexis
2020-07-05 21:48:49 +02:00
parent 4779e9d25e
commit 0a4a59f6e6
6 changed files with 75 additions and 34 deletions

View File

@@ -1,15 +1,25 @@
<template>
<div class="container-fluid p-4" id="spell-container">
<h1 class="display-3 font-display mb-3">Connexion</h1>
<div class="container-fluid">
<section class="fullpage">
<div class="title font-display mb-3">Connexion</div>
</section>
</div>
</template>
<script>
export default {
name: 'login-page',
}
export default {
name: 'login-page',
}
</script>
<style>
<style lang="scss" scoped>
.title {
font-size: 5rem;
font-weight: 700;
}
@media only screen and (max-width: 600px) {
.title {
font-size: 3.5rem;
}
}
</style>