- Added pages for register and scoped styles
This commit is contained in:
25
client/src/pages/user/register-page.vue
Normal file
25
client/src/pages/user/register-page.vue
Normal file
@@ -0,0 +1,25 @@
|
||||
<template>
|
||||
<div class="container-fluid">
|
||||
<section class="fullpage">
|
||||
<div class="title font-display mb-3">Inscription</div>
|
||||
</section>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'register-page',
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.title {
|
||||
font-size: 5rem;
|
||||
font-weight: 700;
|
||||
}
|
||||
@media only screen and (max-width: 600px) {
|
||||
.title {
|
||||
font-size: 3.5rem;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user